当前位置:网站首页>Practice and principle of PostgreSQL join
Practice and principle of PostgreSQL join
2022-07-04 22:28:00 【Hua Weiyun】
Recently the project used PostgreSQL Simple learning join Grammar and principle , Have time to do it later SQLite Source code .
PostgreSQL JOIN Clause is used to combine rows from two or more tables , Based on the common fields between these tables .
stay PostgreSQL in ,JOIN There are five connection types :
CROSS JOIN : Cross connect
INNER JOIN: Internal connection
LEFT OUTER JOIN: The left outer join
RIGHT OUTER JOIN: Right connection
FULL OUTER JOIN: Full outer join
1. Data preparation
establish company Table and department surface among company The table stores basic employee information department The table stores department information .
company The table definition and initialization data are as follows :
DROP TABLE COMPANY;
CREATE TABLE COMPANY(
ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR(50),
SALARY REAL
);
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (1, 'Paul', 32, 'California', 20000.00 );
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (2, 'Allen', 25, 'Texas', 15000.00 );
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (3, 'Teddy', 23, 'Norway', 20000.00 );
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (4, 'Mark', 25, 'Rich-Mond ', 65000.00 );
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (5, 'David', 27, 'Texas', 85000.00 );
INSERT INTO COMPANY (ID,NAME,AGE,ADDRESS,SALARY) VALUES (6, 'Kim', 22, 'South-Hall', 45000.00 );
INSERT INTO COMPANY VALUES (7, 'James', 24, 'Houston', 10000.00 );
INSERT INTO COMPANY VALUES (8, 'Paul', 24, 'Houston', 20000.00);
INSERT INTO COMPANY VALUES (9, 'James', 44, 'Norway', 5000.00);
INSERT INTO COMPANY VALUES (10, 'James', 45, 'Texas', 5000.00);
department The table definition and initialization are as follows :
CREATE TABLE DEPARTMENT(
ID INT PRIMARY KEY NOT NULL,
DEPT CHAR(50) NOT NULL,
EMP_ID INT NOT NULL
);
INSERT INTO DEPARTMENT (ID, DEPT, EMP_ID) VALUES (1, 'IT Billing', 1 );
INSERT INTO DEPARTMENT (ID, DEPT, EMP_ID) VALUES (2, 'Engineering', 2 );
INSERT INTO DEPARTMENT (ID, DEPT, EMP_ID) VALUES (3, 'Finance', 7 );
2. Connection operation
2.1 Cross connect
Cross connect (CROSS JOIN) Match each row of the first table with each row of the second table . If the two input tables have x and y That's ok , Then the result table has x*y That's ok .
SELECT EMP_ID, NAME, DEPT FROM COMPANY CROSS JOIN DEPARTMENT;
The corresponding query plan is as follows :
2.2 Internal connection
Internal connection (INNER JOIN) Combine two tables according to the join predicate (table1 and table2) To create a new result table . The query will table1 Every line in is related to table2 Compare each line in , Find matching pairs for all rows that satisfy the join predicate . When the join predicate is satisfied ,A and B The column values of each matching pair of rows are merged into a result row . Internal connection (INNER JOIN) Is the most common connection type , Is the default connection type .INNER Keywords are optional .
SELECT EMP_ID, NAME, DEPT FROM COMPANY INNER JOIN DEPARTMENT ON COMPANY.ID = DEPARTMENT.EMP_ID;
2.3 The left outer join
For left outer connection , First, execute an inner connection . then , For tables T1 Table... Is not satisfied in T2 Each line in the join condition , among T2 There are... In the column of null Value will also add a connection line . therefore , Connected tables in T1 At least one line in each line .
2.4 Right connection
First , Perform internal connection . then , For tables T2 Table... Is not satisfied in T1 Each line in the join condition , among T1 An empty value in the column will also add a join row . This is the opposite of the left join ; about T2 Each line in , The result table always has one row .
2.5 External connection
First , Perform internal connection . then , For tables T1 Table... Is not satisfied in T2 Each line of any line connection condition in , If T2 There are... In the column of null A value is also added to the result . Besides , about T2 Dissatisfaction and T1 Any row in the join condition for each row , Will be added T1 Column contains null Value into the result .
It can be seen from the above operation that Most connections will use Hash Join Algorithm to achieve .postgreSQL in join There are three algorithms nested loop join merge join as well as hash join
3. Connection principle
3.1 nested loop join
nested loop join: The right relation is scanned once for every row found in the left relation. This strategy is easy to implement but can be very time consuming. (However, if the right relation can be scanned with an index scan, this can be a good strategy. It is possible to use values from the current row of the left relation as keys for the index scan of the right.)
EXPLAIN SELECT * FROM COMPANY JOIN DEPARTMENT ON DEPARTMENT.EMP_ID = COMPANY.ID WHERE company."id" = 1;
1. surface company according to id To filter the results
2. For each row of filtered results , utilize id from department Match in the table
3.2 merge join
merge join: Each relation is sorted on the join attributes before the join starts. Then the two relations are scanned in parallel, and matching rows are combined to form join rows. This kind of join is more attractive because each relation has to be scanned only once. The required sorting might be achieved either by an explicit sort step, or by scanning the relation in the proper order using an index on the join key.
set enable_hashjoin=off;
EXPLAIN SELECT * FROM COMPANY JOIN DEPARTMENT ON DEPARTMENT.emp_id = COMPANY.ID;
- First company Table associated fields id Is ordered Direct index scan
- Deparpment First of all, in accordance with the emp_id Sort And then execute merge join
3.3 hash join
hash join: the right relation is first scanned and loaded into a hash table, using its join attributes as hash keys. Next the left relation is scanned and the appropriate values of every row found are used as hash keys to locate the matching rows in the table.
set enable_hashjoin=on;
EXPLAIN SELECT * FROM COMPANY JOIN DEPARTMENT ON DEPARTMENT.emp_id = COMPANY.ID WHERE company."id" = 1;
EXPLAIN SELECT * FROM COMPANY JOIN DEPARTMENT ON DEPARTMENT.emp_id = COMPANY.ID WHERE company.age = 32;
First, scan sequentially department surface structure hash surface key=department.emp_id That is, the associated field ,
And then sequential scanning company surface use company surface Id To match hash surface key If the match is successful The output .
hash join and merge join Both associated tables are scanned only once , nested loop join Is scanned once by one of the associated tables , ( If the scan result of the previous table has multiple rows output ) The other scans many times .
HASH JOIN principle
Refer to hash join Implementation source code :
Take the associated fields of the main drive table as key, The fields required by the master driver table are used as value To build hash surface .
Traverse every row of the driven table Calculate whether the line is consistent with hash In the table key identical If key The same will be driven by the corresponding fields and hits of the table hash surface key Corresponding value Output together , As a line in the result . because hash The use of a watch , The search time complexity of each row of the driven table is constant .
for (j = 0; j < length(inner); j++)
hash_key = hash(inner[j]);
append(hash_store[hash_key], inner[j]);
for (i = 0; i < length(outer); i++)
hash_key = hash(outer[i]);
for (j = 0; j < length(hash_store[hash_key]); j++)
if (outer[i] == hash_store[hash_key][j])
output(outer[i], inner[j]);
Explain the following :
// utilize inner surface , To construct the hash surface ( Put it in memory )
for (j = 0; j < length(inner); j++)
{
hash_key = hash(inner[j]);
append(hash_store[hash_key], inner[j]);
}
// Yes outer Every element of the table , Traversal
for (i = 0; i < length(outer); i++)
{
// Get outer In the table Some element , Conduct hash operation , Get it hash_key value
hash_key = hash(outer[i]);
// Use the one just got above hash_key value , Come on Yes hash table Probe ( Assume hash This is in the table key value )
// use length (hash_store[hash_Key]) Because ,hash The algorithm is constructed hash After the table , There may be a key There are multiple elements at the value .
// Yes Have the same Of ( Here is the operation just above , specific )hash_key Traversal of each element of value
for (j = 0; j < length(hash_store[hash_key]); j++)
{
// If a match is found , Then output a line of results
if (outer[i] == hash_store[hash_key][j])
output(outer[i], inner[j]);
}
}
边栏推荐
- 使用 BlocConsumer 同时构建响应式组件和监听状态
- TCP protocol three times handshake process
- How diff are the contents of the same configuration item in different environments?
- Sqlserver encrypts and decrypts data
- Convolutional neural network model -- lenet network structure and code implementation
- More than 30 institutions jointly launched the digital collection industry initiative. How will it move forward in the future?
- 抖音实战~评论数量同步更新
- 嵌入式开发:技巧和窍门——提高嵌入式软件代码质量的7个技巧
- Kdd2022 | what features are effective for interaction?
- MySQL storage data encryption
猜你喜欢
并发网络模块化 读书笔记转
Machine learning notes mutual information
[Yugong series] go teaching course 003-ide installation and basic use in July 2022
凭借了这份 pdf,最终拿到了阿里,字节,百度等八家大厂 offer
Bookmark
Introduction and application of bigfilter global transaction anti duplication component
傳智教育|如何轉行互聯網高薪崗比特之一的軟件測試?(附軟件測試學習路線圖)
From repvgg to mobileone, including mobileone code
2022-07-04: what is the output of the following go language code? A:true; B:false; C: Compilation error. package main import “fmt“ func main() { fmt.Pri
Scala下载和配置
随机推荐
Nat. Commun.| Machine learning jointly optimizes the affinity and specificity of mutagenic therapeutic antibodies
LOGO特训营 第五节 字体结构与设计常用技法
Bizchart+slider to realize grouping histogram
凭借了这份 pdf,最终拿到了阿里,字节,百度等八家大厂 offer
The drawing method of side-by-side diagram, multi row and multi column
大厂的广告系统升级,怎能少了大模型的身影
Embedded development: skills and tricks -- seven skills to improve the quality of embedded software code
ApacheCN 翻译、校对、笔记整理活动进度公告 2022.7
复数在数论、几何中的用途 - 曹则贤
Why should garment enterprises talk about informatization?
傳智教育|如何轉行互聯網高薪崗比特之一的軟件測試?(附軟件測試學習路線圖)
i. Mx6ull driver development | 24 - platform based driver model lights LED
Scala下载和配置
Common shortcut keys for hbuilder x
What is the stock account opening process? Is it safe to use flush mobile stock trading software?
【愚公系列】2022年7月 Go教学课程 003-IDE的安装和基本使用
达梦数据凭什么被称为国产数据库“第一股”?
现在mysql cdc2.1版本在解析值为0000-00-00 00:00:00的datetime类
High school physics: linear motion
UML图记忆技巧