Detailed explanation of mysql exists and not exists examples

Detailed explanation of mysql exists and not exists examples

Detailed explanation of mysql exists and not exists examples

tableA

|column1 | column1 | column3 |

tableb

|column1 | column1 | column3 |

To query the data of tableA, the condition is that tableA.column1 is not in tableB.column2 of tableB

That is to say, you want to get an effect similar to the following statement (the effect of not in is not completely equivalent to not exists. If there is an empty record in the subquery, the entire query statement will not return data)

SELECT 
  a.*
FROM
  table A
WHERE 
  a.column1 not in (
    SELECT column2 FROM tableB
  )

This can be achieved using the following statement

SELECT
  a.*
FROM
  table A
WHERE
  NOT EXISTS(
    SELECT b.column2 FROM tableB b WHERE a.column1=b.column2
  )

The above is only the case of two tables. In fact, it is also easy to use in the connection query of multiple tables. The above writing method also applies to exists

The above is a detailed example of MySQL exists and not exists. If you have any questions, please leave a message or discuss in the community of this site. Thank you for reading and hope to help everyone. Thank you for your support of this site!

You may also be interested in:
  • SQL statement optimization: replace IN with EXISTS and NOT IN with NOT EXISTS
  • Usage of sqlserver exists, not exists
  • How to write if not exists in mssql and sqlite
  • Subtle differences in the use of SQL not in and not exists
  • Let's talk in detail about the usage of exists and not exists in SQL

<<:  Linux loading vmlinux debugging

>>:  jQuery implements the practice of changing the position and size of div by dragging the mouse

Recommend

How to add double quotes in HTML title

<a href="https://www.jb51.net/" titl...

CSS3 implements the sample code of NES game console

Achieve resultsImplementation Code html <input...

Tutorial on installing Elasticsearch 7.6.2 in Docker

Install Docker You have to install Docker, no fur...

How to implement remote automatic backup of MongoDB in Linux

Preface After reading the previous article about ...

Nginx handles http request implementation process analysis

Nginx first decides which server{} block in the c...

CSS implements 0.5px lines to solve mobile compatibility issues (recommended)

【content】: 1. Use background-image gradient style...

Deep understanding of line-height and vertical-align

Several concepts Line box: A box that wraps an in...

Linux kernel device driver system call notes

/**************************** * System call******...

How to automatically number the results of MYSQL query data

Preface In fact, I have never encountered this ki...

Analysis of the differences between Iframe and FRAME

1. Use of Iframe tag <br />When it comes to ...

Nest.js hashing and encryption example detailed explanation

0x0 Introduction First of all, what is a hash alg...

Solution to the welcome to emergency mode message when booting CentOS7.4

Today I used a virtual machine to do an experimen...

Detailed explanation of Linux curl form login or submission and cookie usage

Preface This article mainly explains how to imple...

Node.js implements breakpoint resume

Table of contents Solution Analysis slice Resume ...