Summary of some basic knowledge of oracle and sql

Mainly based on w3school sql (because it is the basis of sql), supplemented by courseware and exercises To prevent you from dying first because you read the wrong address https://www.w3school.com.cn/s.asp select where Query statements, the most commonly used select Listing from Table name where condition The asterisk is equivalent to query ...

Posted by dcalladi on Mon, 17 Jan 2022 03:21:59 +0100

MySQL 8 window function syntax and example explanation

1, What is the window function? Window function is a special kind of function, which is used with the over keyword. As the name suggests, the window function is executed only in the window that meets the conditions. The object is each record in the window. A window can be understood as a collection of records, which contains several rec ...

Posted by gloveny on Mon, 17 Jan 2022 01:48:16 +0100

MySQL - create, delete database tables, SQL commands

1, MySQL create data table CREATE TABLE table_name (column_name column_type); 1. Create a library and set the character set encoding to utf8 create database 'Library name' default character set = 'utf8'; 2. Create the table and set the character set encoding to utf8 create table 'Table name'(id int(6),name char(10)) default character set = ...

Posted by EternalSorrow on Sat, 15 Jan 2022 23:40:42 +0100

MyBatis_06 reverse engineering

1, MyBatisGenerator installation When using mybatis, we need to repeatedly create pojo classes, mapper files and dao classes, and configure the dependencies between them. It is troublesome and has done a lot of repeated work. Mybatis officials have also found this problem, so we have provided mybatis generator tool to help us automatically cre ...

Posted by sunshine66 on Fri, 14 Jan 2022 23:43:56 +0100

Query based on mysql

Basic query Basic grammar select [distinct] * | {colunm1,colunm2,...} from table_name; characteristic 1,The query list can be fields, constants, expressions, functions, or multiple 2,The query result is a virtual table Basic query statement SELECT 1; #There are no clauses SELECT 9/2; #There are no clauses SELECT Identifies which co ...

Posted by Dragen on Fri, 14 Jan 2022 13:30:41 +0100

WEB vulnerability - knowledge points

preface Explain the types of vulnerabilities on various WEB levels, the hazard level of specific vulnerabilities, and a brief impact range test for example analysis. The vulnerabilities in the mind map are also various knowledge points we will learn. In fact, according to the formation principle of vulnerabilities, how to find and use them ...

Posted by joshuaceo on Fri, 14 Jan 2022 06:34:19 +0100

To solve the data association between excel tables, it is enough to know these moves

Anyone who has used SAP's voucher batch entry template (Excel file) knows that a voucher consists of header and multiple line items, which is a typical scenario about the association of two excel tables. There is a problem here: when we need to enter multiple vouchers at one time, how to associate the header of each voucher with the line item? ...

Posted by phpCCore Brad on Thu, 13 Jan 2022 17:50:32 +0100

MySQL must know and know -- Chapter 7 data filtering

Data filtering This chapter teaches how to combine WHERE clauses to create more powerful and advanced search conditions. We will also learn how to use the NOT and IN operators. Combine WHERE clause Last chapter( MySQL must know and know - Chapter 6 filtering data )All the WHERE clauses introduced in this article use a single condition when f ...

Posted by irandoct on Thu, 13 Jan 2022 05:54:01 +0100

Note: 3.4 data query in introduction to database system - SELECT (single table query, connection query, nested query, set query, multi table query)

For 3.2 Data query - SELECT (single table query, join query, nested query, set query, multi table query) Learning notes; 0. Preface This article is a note on the database query SELECT part edited by Mr. Wang Shan in introduction to database system, which adopts SQL Sever database.All examples in this article will have screenshots of the resul ...

Posted by solee on Wed, 12 Jan 2022 11:11:23 +0100

Deploy GreatSQL in Docker and build MGR cluster

The original content of GreatSQL community cannot be used without authorization. Please contact Xiaobian and indicate the source for reprint.In order to experience GreatSQL for community users, we also provide Docker images. This article describes in detail how to deploy GreatSQL in Docker and build an MGR cluster.The operating environment invo ...

Posted by jrws on Wed, 12 Jan 2022 03:04:22 +0100