1. Use the SELECT clause to query multiple tablesSELECT field name FROM table1, table2 ... WHERE table1.field = table2.field AND other query conditions SELECT a.id,a.name,a.address,a.date,b.math,b.english,b.chinese FROM tb_demo065_tel AS b,tb_demo065 AS a WHERE a.id=b.id Note: In the above code, the two tables are associated with the same id field information as the condition, but this should not be used in actual development. It is best to use primary and foreign key constraints to achieve this. 2. Use table aliases for multi-table queries like: SELECT a.id,a.name,a.address,b.math,b.english,b.chinese FROM tb_demo065 a,tb_demo065_tel b WHERE a.id=b.id AND b.id='$_POST[textid]' In SQL language, you can specify an alias for a table in two ways SELECT a.id,a.name,a.address,b.math,b.english,b.chinese FROM tb_demo065 AS a,tb_demo065_tel AS b WHERE a.id=b.id The second method is to add the table alias directly after the table name. SELECT a.id,a.name,a.address,b.math,b.english,b.chinese FROM tb_demo065 a,tb_demo065_tel b WHERE a.id=b.id A few points to note when using table aliases
3. Merge multiple result sets In SQL language, you can combine the query results of multiple SELECT statements through UNION or ALL. The instructions for using these two keywords are as follows: UNION: This keyword can be used to combine the query results of multiple SELECT statements and delete duplicate rows. ALL: This keyword can be used to merge the query results of multiple SELECT statements, but duplicate rows will not be deleted. When using the UNION or ALL keyword to combine multiple tables for output, the query results must have the same structure and the data types must be compatible. In addition, when using UNION, the number of fields in the two tables must be the same, otherwise the SQL statement will be prompted with an error. ex:SELECT id,name,pwd FROM tb_demo067 UNION SELECT uid,price,date FROM tb_demo067_tel Four simple nested queries Subquery: A subquery is a SELECT query that returns a single value and is nested in SELECT, INSERT, UPDATE, and DELETE statements or other query statements. Subqueries can be used anywhere an expression can be used. SELECT id,name,sex,date FROM tb_demo068 WHERE id in(SELECT id FROM tb_demo068 WHERE id='$_POST[test]') Inner join: Using the query result as the query condition of the WHERE clause is called inner join 5. Complex nested queries Nested queries between multiple tables can be implemented using the IN predicate. The syntax is as follows: test_expression[NOT] IN { subquery } Parameter description: test_expression refers to an SQL expression, subquery contains a subquery of a result set. The principle of multi-table nested query: no matter how many tables are nested, there must be some kind of association between the tables, and this association is established through the WHERE clause to implement the query. 6. Application of nested query in query statistics When implementing multi-table queries, you can use the predicates ANY, SOME, and ALL at the same time. These predicates are called quantitative comparison predicates and can be used in conjunction with comparison operators to determine whether all returned values meet the search conditions. The SOME and ANY predicates are existential predicates and only focus on whether the returned values meet the search conditions. The two predicates have the same meaning and can be used interchangeably; the ALL predicate is called a general predicate and only cares about whether there are predicates that meet the search requirements. SELECT * FROM tb_demo069_people WHERE uid IN(SELECT deptID FROM tb_demo069_dept WHERE deptName='$_POST[select]') SELECT a.id,a.name FROM tb_demo067 AS a WHERE id<3)
7. Using subqueries as derived tables In the actual project development process, it is often used to derive an information table containing only a few key fields from a table with relatively complete information. This goal can be achieved through subqueries, such as SELECT people.name,people.chinese,people.math,people.english FROM (SELECT name,chinese,math,english FROM tb_demo071) AS people Note: Subqueries should follow the following rules: (1) The inner subquery introduced by the comparison operator contains only one expression or column name. The columns named in the WHERE clause of the outer statement must be compatible with the columns named in the inner subquery. 8. Using subqueries as expressionsSELECT (SELECT AVG(chinese)FROM tb_demo071),(SELECT AVG(english)FROM tb_demo071),(SELECT AVG(math)FROM tb_demo071) FROM tb_demo071 Note: When using a subquery, it is best to give the list items an alias, which makes it easier for users to assign values to table items when using the mysql_fetch_array() function, such as SELECT (SELECT AVG(chinese) FROM tb_demo071) AS yuwen,(SELECT AVG(english) FROM tb_demo071) AS yingyu,(SELECT AVG(math) FROM tb_demo071) AS shuxue FROM tb_demo071 9. Use subqueries to associate dataSELECT * FROM tb_demo072_student WHERE id=(SELECT id FROM tb_demo072_class WHERE className = '$_POST[text]') 10. Multiple table joint query By using UNION in SQL statements, data information that meets the conditions in different tables can be displayed in the same column. ex:SELECT * FROM tb_demo074_student UNION SELECT * FROM tb_demo074_fasten Note: When using UNION, you should pay attention to the following two points: 11. Sort the combined results For UNION operation compatibility, all SELECT statements must not have an ORDER BY statement, but there is one exception, that is, placing an ORDER BY clause in the last SELECT statement to achieve the final sorted output of the results. ex:SELECT * FROM tb_demo074_student UNION SELECT * FROM tb_demo074_fasten ORDER BY id The conditions for using UNION are relatively strict, so when using this statement, you must pay attention to whether the number of items and field types of the two tables are the same. 12 Conditional Join StatementsSELECT * FROM tb_demo076_BEIJING GROUP BY name HAVING name='Posts and Telecommunications Press' OR name='Machinery Industry Press' UNION SELECT * FROM tb_demo076_BEIJING GROUP BY name HAVING name <>'Posts and Telecommunications Press' AND name <>'Machinery Industry Reprint Press' ORDER BY id The above statement uses the GROUP BY statement and the HAVING statement to implement conditional joint query. The purpose is to ensure that "People's Posts and Telecommunications Press" and "Machinery Industry Press" are always at the top of the list, and then export other publishing houses. 13. Simple inner join querySELECT filedlist FROM table1 [INNER] JOIN table2 ON table1.column1 = table2.column1 Among them, filedlist is the field to be displayed, INNER means the connection between the tables is inner connection, table1.column1=table2.column1 is used to indicate the connection condition between the two tables, such as: SELECT a.name,a.address,a.date,b.chinese,b.math,b.english FROM tb_demo065 AS a INNER JOIN tb_demo065_tel AS b on a.id=b.id 14 Complex inner join query Complex inner join queries are based on basic inner join queries and add some query conditions, such as: SELECT a.name,a.address,a.date,b.chinese,b.math,b.english FROM tb_demo065 AS a INNER JOIN tb_demo065_tel AS b on a.id=b.id WHERE b.id=(SELECT id FROM tb_demo065 WHERE tb_demo065.name='$_POST[text]') In short, the essence of realizing the association between tables is that there are common data items or identical data items between the two tables. The two tables are connected through the WHERE clause or the INNER JOIN ... ON statement to realize the query. 15. Use outer joins to implement multi-table joint queries (1) LEFT OUTER JOIN means that the tables are connected to each other through a left join, which can also be abbreviated as LEFT JOIN. It is based on the table on the left, so it is called a left join. All information in the left table will be output, while only information in the right table that meets the conditions will be output. NULL will be returned for information that does not meet the conditions. (2) RIGHT OUTER JOIN means that the tables are connected to each other through right join, which can also be abbreviated as RIGHT JOIN. It is based on the table on the right, so it is called right join. All information in the right table will be output, while the information in the left table will only output the information that meets the conditions. NULL will be returned for information that does not meet the conditions. 16. Use the IN or NOTIN keywords to limit the rangeex:SELECT * FROM tb_demo083 WHERE code IN(SELECT code FROM tb_demo083 WHERE code BETWEEN '$_POST[text1]' AND '$_POST[text2]') IN can be used to specify a query within a range. If you need to query outside a certain range, you can use NOT IN instead. 17. Correlated subqueries introduced by INex:SELECT * FROM tb_demo083 WHERE code IN(SELECT code FROM tb_demo083 WHERE code = '$_POST[text]') 18. Using the HAVING statement to filter grouped data The HAVING clause is used to specify search conditions for groups or aggregates. HAVING is usually used with the GROUP BY clause. If the SQL statement does not contain a GROUP BY clause, HAVING behaves the same as the WHERE clause. ex:SELECT name,math FROM tb_demo083 GROUP BY id HAVING math > '95' This is the end of this article about the specific examples of MySQL multi-table query. For more relevant MySQL multi-table query content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML table markup tutorial (42): horizontal alignment attribute of the table header ALIGN
>>: JavaScript programming through Matlab centroid algorithm positioning learning
The steps are as follows 1. Create a docker group...
Table of contents Scene Introduction Deep respons...
In daily operation and maintenance work, nginx se...
Table of contents Preliminary preparation Deploym...
Table of contents Hidden Problems Solution to ada...
<br />The content is reproduced from the Int...
When using TensorFlow for deep learning, insuffic...
React tsx generates a random verification code fo...
Table of contents Function call optimization Func...
View installation and uninstallation # View rpm -...
Table of contents 1. Prototype 2. Prototype point...
1. HTML Overview htyper text markup language Hype...
Install using the MSI installation package Downlo...
The following is some basic sql knowledge I have ...
Preface There are many open source monitoring too...