Overview UNION The connection data set keyword can concatenate two query result sets into one, filtering out identical records UNION ALL The connection dataset keyword can concatenate two query result sets into one without filtering out identical records. Today, when I received a request, I used UNION to query and found that if two queries were spliced using ORDER BY respectively, they could not be sorted successfully. After a lot of trouble, I recorded it. Table structure and data -- Create table CREATE TABLE test_user ( ID int(11) NOT NULL AUTO_INCREMENT, USER_ID int(11) DEFAULT NULL COMMENT 'User account', USER_NAME varchar(255) DEFAULT NULL COMMENT 'User name', AGE int(5) DEFAULT NULL COMMENT 'Age', COMMENT varchar(255) DEFAULT NULL COMMENT 'Introduction', PRIMARY KEY (ID) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- Data insertion statement INSERT INTO test_user (ID, USER_ID, USER_NAME, AGE, COMMENT) VALUES ('1', '111', 'Happy rookie', '18', 'Very happy today'); INSERT INTO test_user (ID, USER_ID, USER_NAME, AGE, COMMENT) VALUES ('2', '222', 'Sad rookie', '21', 'Very sad today'); INSERT INTO test_user (ID, USER_ID, USER_NAME, AGE, COMMENT) VALUES ('3', '333', 'Serious rookie', '30', 'Very serious today'); INSERT INTO test_user (ID, USER_ID, USER_NAME, AGE, COMMENT) VALUES ('4', '444', 'Happy rookie', '18', 'I am very happy today'); INSERT INTO test_user (ID, USER_ID, USER_NAME, AGE, COMMENT) VALUES ('5', '555', 'Serious rookie', '21', 'Today is very serious'); The default table data is displayed as follows Run results analysis -- Query 1 SELECT * FROM test_user u ORDER BY AGE Result Set 1 -- Query 2 -- Using UNION ( SELECT * FROM test_user u ORDER BY AGE ) UNION ( SELECT * FROM test_user u ORDER BY AGE ); -- Query 3 -- Using UNION ALL ( SELECT * FROM test_user u ORDER BY AGE ) UNION ALL ( SELECT * FROM test_user u ORDER BY AGE ) Result set 2: Using UNION Since UNION combines identical records (which has the same effect as DISTINCT), only five records are displayed here. Result set 3: Using UNION ALL If you need to use UNION ALL and sort, you need to query it as a subquery. -- Query 4 -- Use UNION ALL as a subquery and sort SELECT * FROM ( ( SELECT * FROM test_user u ORDER BY AGE ) UNION ALL ( SELECT * FROM test_user u ORDER BY AGE ) ) ORDER BY AGE; Result Set 4 improve After searching for relevant experience, I found that I had done something unnecessary. It turns out that the sorting can be done without using a subquery: -- Query 5 -- The first query does not use sorting. If it does, an error will be reported without parentheses (this is why I wanted to use a subquery before and did not think of this method) SELECT * FROM test_user u UNION ALL SELECT * FROM test_user u ORDER BY AGE The result set is the same as result set 4, so the result will not be pasted here. in conclusion When we use the UNION (or UNION ALL) statement, if the two result sets of UNION are sorted separately and then spliced, their ORDER BY is invalid. If we want to sort, there are two ways:
Reference Links cnblogs: Use of UNION and UNION ALL in MySQL Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
>>: Vue parent component calls child component function implementation
I learned a new trick today. I didn’t know it befo...
Result: Implementation code: Need to be used with...
HTML forms are used to collect different types of...
1. Install dependency packages yum -y install gcc...
Table of contents What is a web container? The Na...
1. Check the character set of MySQL show variable...
1. Download nginx [root@localhost my.Shells]# doc...
Question: Although the index has been created, wh...
Preface This article describes two situations I h...
Using UNION Most SQL queries consist of a single ...
Table of contents Query Background 1. Like query ...
Preface Execute the show create table <tablena...
Hyperlink Hyperlinks are the most frequently used ...
Table of contents Overview 1. Compositon API 1. W...
Table of contents 1. Overview of MySQL Logical Ar...