Brief analysis of MySQL union and union all

Brief analysis of MySQL union and union all

In the database, both UNION and UNION ALL keywords merge two result sets into one, but the two are different in terms of usage and efficiency.

UNION in MySQL

UNION will filter out duplicate records after linking the tables, so after the tables are linked, the resulting result set will be sorted, duplicate records will be deleted, and then the results will be returned. In practice, duplicate records will not be generated in most applications. The most common is the UNION of the process table and the history table. like:

select * from gc_dfys union select * from ls_jg_dfys

When this SQL is run, it first retrieves the results of the two tables, then uses the sorting space to sort and delete duplicate records, and finally returns the result set. If the amount of data in the table is large, it may result in disk sorting.

UNION ALL in MySQL

UNION ALL simply combines the two results and returns them. In this way, if there is duplicate data in the two returned result sets, the returned result set will contain the duplicate data.

In terms of efficiency, UNION ALL is much faster than UNION, so if you can confirm that the two merged result sets do not contain duplicate data, then use UNION ALL, as follows:

select * from gc_dfys union all select * from ls_jg_dfys

With UNION, all returned rows are unique, just as if you had used DISTINCT on the entire result set.

If you use Union all, all rows will be returned without removing duplicates.

If you want to use an ORDER BY or LIMIT clause to sort or limit the entire UNION result, you should parenthesize the individual SELECT statements and put the ORDER BY or LIMIT after the last one:

(SELECT a FROM tbl_name WHERE a=10 AND B=1) 
UNION
(SELECT a FROM tbl_name WHERE a=11 AND B=2)
ORDER BY a LIMIT 10;

It's a bit more troublesome to do this:

select userid from (
select userid from testa union all select userid from testb) t 
order by userid limit 0,1;

If you still want to group by, and have conditions, then:

select userid from (select userid from testa union all select userid from testb) t group by userid having count(userid) = 2;

Note: There must be an alias after the union brackets, otherwise an error will be reported

Of course, if the data volume of several union tables is large, it is recommended to export the text first and then execute it with a script.

Because pure SQL is used, the efficiency will be relatively low, and it will write temporary files. If your disk space is not large enough, errors may occur.

Error writing file '/tmp/MYLsivgK' (Errcode: 28)

Summarize

The above is the introduction of MySQL union and union all to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • A brief understanding of the difference between MySQL union all and union
  • Basic usage of UNION and UNION ALL in MySQL
  • Detailed explanation of the usage of UNION in MySQL
  • MySQL series tutorial on understanding the use of union (all) and limit and exists keywords

<<:  How to use physics engine joints in CocosCreator

>>:  Tutorial on installing lamp-php7.0 in Centos7.4 environment

Recommend

MySQL series 9 MySQL query cache and index

Table of contents Tutorial Series 1. MySQL Archit...

How to achieve centered layout in CSS layout

1. Set the parent container to a table and the ch...

How to disable ads in the terminal welcome message in Ubuntu Server

If you are using the latest Ubuntu Server version...

Various methods to restart Mysql under CentOS (recommended)

1. MySQL installed via rpm package service mysqld...

Detailed explanation of docker compose usage

Table of contents Docker Compose usage scenarios ...

8 essential JavaScript code snippets for your project

Table of contents 1. Get the file extension 2. Co...

Introduction to the use of select optgroup tag in html

Occasionally, I need to group select contents. In ...

Multiple methods to modify MySQL root password (recommended)

Method 1: Use the SET PASSWORD command MySQL -u r...

4 ways to optimize MySQL queries for millions of data

Table of contents 1. The reason why the limit is ...

WeChat applet tab left and right sliding switch function implementation code

Effect picture: 1. Introduction Your own applet n...

Vue SPA first screen optimization solution

Table of contents Preface optimization SSR Import...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

Docker commands are implemented so that ordinary users can execute them

After installing docker, there will usually be a ...

js returns to the previous page and refreshes the code

1. Javascript returns to the previous page history...

Google Translate Tool: Quickly implement multilingual websites

Google China has released a translation tool that ...