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:
|
<<: Linux loading vmlinux debugging
>>: jQuery implements the practice of changing the position and size of div by dragging the mouse
<a href="https://www.jb51.net/" titl...
Achieve resultsImplementation Code html <input...
Install Docker You have to install Docker, no fur...
Preface After reading the previous article about ...
Nginx first decides which server{} block in the c...
【content】: 1. Use background-image gradient style...
Several concepts Line box: A box that wraps an in...
/**************************** * System call******...
Preface In fact, I have never encountered this ki...
1. Use of Iframe tag <br />When it comes to ...
0x0 Introduction First of all, what is a hash alg...
Today I used a virtual machine to do an experimen...
Preface This article mainly explains how to imple...
Original URL: http://segmentfault.com/blog/ciaocc/...
Table of contents Solution Analysis slice Resume ...