Comparison of the usage of EXISTS and IN in MySQL

Comparison of the usage of EXISTS and IN in MySQL

1. Usage:

(1) EXISTS usage

select a.batchName,a.projectId from ucsc_project_batch a where EXISTS (select b.id from ucsc_project b where a.projectId = b.id) 

The above SQL means: query the batchName and projectId fields using ucsc_project_batch as the main table, where the projectId field exists in the ucsc_project table.

EXISTS will perform a loop query match on the outer table ucsc_project_batch. It does not care what the return value of the inner table subquery is, but only cares whether there is a return value. If there is a return value, the condition is true, the data is matched successfully, and is added to the query result set; if there is no return value, the condition is false, and the data is discarded.

For example, if we change the query return field of the first query, it will not affect the query result of the outer query:

select a.batchName,a.projectId from ucsc_project_batch a where EXISTS (select b.companyId,b.name from ucsc_project b where a.projectId = b.id) 

(2) IN usage

select a.batchName,a.projectId from ucsc_project_batch a where a.projectId in (select b.id from ucsc_project b)

The query result of the above SQL is the same as the result of EXISTS just now, and the meaning of the query is also the same.

2. Note:

(1) When writing EXISTS, you need to pay attention to the fact that the conditional statement in the subquery generally needs to be associated with the table of the outer query. Otherwise, the condition of the subquery may always be true or always be false. When the outer query table is cyclically matched, either all results will be found or none will be found.

select a.batchName,a.projectId from ucsc_project_batch a where EXISTS (select b.id from ucsc_project b)

For example, in the above writing method, since the ucsc_project table has values, the condition of the subquery is always true. When each data of ucsc_project_batch is matched in a loop, it can be matched successfully, and the query result becomes the data of the entire ucsc_project_batch table.

select a.batchName,a.projectId from ucsc_project_batch a where EXISTS (select b.id from ucsc_project b where b.id is null)

In this way, the subquery will definitely not find any results, so the condition of the subquery is false, each piece of data in the outer query fails to match, and the entire query result is empty.

(2) There is no limit on the number of parameters in the IN statement in MySQL, but there is a length limit for SQL statements in MySQL, with the maximum length of the entire statement being 4M.

(3) The EXISTS subquery statement does not care what is queried, but only cares whether there is a result set. If there is, the entire subquery can be regarded as a statement with a true condition, otherwise it is a statement with a false condition.

(4) The IN statement can only return one field for the subquery, otherwise an error will be reported:

select a.batchName,a.projectId from ucsc_project_batch a where a.projectId in (select b.id,b.companyId from ucsc_project b)

[Err] 1241 - Operand should contain 1 column(s)

3. Scene selection

If the outer query table is large and the subquery table is small, select IN; if the outer query table is small and the subquery table is large, select EXISTS; if the two tables are of similar size, then they are similar.

(1) The SQL query in IN will only be queried once, and then the result set will be stored in a temporary file, and then matched with the outer query SQL. Both the outer query and the subquery can use indexes.

select a.batchName,a.projectId from ucsc_project_batch a where a.projectId in (select b.id from ucsc_project b)

is equivalent to:

$result = [];
$ucsc_project_batch = "select a.batchName,a.projectId from ucsc_project_batch a";
$ucsc_project = "select b.id from ucsc_project b";
for($i = 0;$i < $ucsc_project_batch .length;$i++){
 for($j = 0;$j < $ucsc_project.length;$j++){
  if($ucsc_project_batch[$i].projectId== $ucsc_project[$j].id){
   $result[] = $ucsc_project_batch[$i];
   break;
  }
 }
}

(2) EXISTS will perform a loop match on the external query table ucsc_project_batch, executing ucsc_project_batch.length times. The subquery can use the index, and the external query scans the entire table.

select a.batchName,a.projectId from ucsc_project_batch a where EXISTS (select b.id from ucsc_project b where a.projectId = b.id)

is equivalent to:

$result = [];
$ucsc_project_batch = "select a.batchName,a.projectId from ucsc_project_batch a ";
for ($i = 0; $i < $ucsc_project_batch . length; $i++) {
 if (exists($ucsc_project_batch [$i] . projectId)) {//Execute select b.id from ucsc_project b where a.projectId=b.id        
  $result[] = $ucsc_project_batch[$i];
 }
}

Through the analysis of the two pseudo codes, we can see that: when the subquery table is large, using EXISTS can effectively reduce the total number of loops to improve the speed; when the outer query table is large, using IN can effectively reduce the loop traversal of the outer query table to improve the speed.

Summarize

This is the end of this article about the comparison of the usage of EXISTS and IN in MySQL. For more relevant MySQL EXISTS and IN comparison content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Basic usage of exists, in and any in MySQL
  • Introduction to the use and difference between in and exists in MySQL
  • Comparative Analysis of IN and Exists in MySQL Statements
  • MySQL exists and in detailed explanation and difference
  • Summary of the differences between in query and exists query in mySQL
  • MYSQL IN and EXISTS optimization examples
  • mysql not in, left join, IS NULL, NOT EXISTS efficiency problem record
  • Detailed explanation of the difference between in and exists in MySQL

<<:  A summary of detailed insights on how to import CSS

>>:  XHTML no longer uses some obsolete elements in HTML

Recommend

Detailed explanation of the calculation method of flex-grow and flex-shrink in flex layout

Flex(彈性布局) in CSS can flexibly control the layout...

Linux system to view CPU, machine model, memory and other information

During system maintenance, you may need to check ...

Detailed steps to install Mysql5.7.19 using yum on Centos7

There is no mysql by default in the yum source of...

MySQL 8.0.18 stable version released! Hash Join is here as expected

MySQL 8.0.18 stable version (GA) was officially r...

Good website copywriting and good user experience

Looking at a website is actually like evaluating a...

mysql5.7 remote access settings

Setting up remote access in mysql5.7 is not like ...

Vue axios interceptor commonly used repeated request cancellation

introduction The previous article introduced the ...

Application of CSS3 animation effects in activity pages

background Before we know it, a busy year is comi...

Deep understanding of the use of ::before/:before and ::after/:after

Part 1: Basics 1. Unlike pseudo-classes such as :...

Detailed explanation of the use of router-view components in Vue

When developing a Vue project, you often need to ...

Detailed explanation of jQuery method attributes

Table of contents 1. Introduction to jQuery 2. jQ...

How to use Lottie animation in React Native project

Lottie is an open source animation library for iO...

MySQL 8.X installation tutorial under Windows

I had been using MySQL 5.7 before, but because My...

Detailed explanation of mysql5.6 master-slave setup and asynchronous issues

Table of contents 1. MySQL master-slave replicati...