当前位置:网站首页>SQL Server database in clause and exists clause conversion
SQL Server database in clause and exists clause conversion
2022-04-23 19:08:00 【Little brother】
One thing I've been confused about before is how to use EXISTS To replace IN Well , What is the meaning of the two ? Today, I will record my personal understanding
IN Scope of representation , It means that a field is within a certain range , This scope generally uses subqueries to get , Thus we can see that IN The result returned by the subquery should be this range set .
EXISTS Indicates presence , There is at least one place , This condition is made by EXISTS Subquery to complete , But here EXISTS The result returned by the subquery is no longer a result set , It's a Boolean value (true or false), In fact, this is quite understandable ,EXISTS It means that if the subquery can find the value, it will return true, execute EXISTS The previous statement .
Take a chestnut
If there is a watch user, It has two fields id and name, We need to check the name with a User information for :
The simplest SQL:select * from user where name like '%a%';
Use IN Of SQL:select u.* from user u where u.id in (select uu.id from user uu where uu.name like '%a%');
We will now use IN Of SQL Change to use EXISTS Of SQL How to write ?
In the beginning, I directly put u.id in Replace with EXISTS, Get the following statement :
select u.* from user u where exists(select uu.id from user uu where uu.name like '%a%');
After testing, it is found that the output result is wrong , This statement queries all users without omission , I believe you also found the problem , Later, I modified the above sentence as follows :
select u.* from user u where exists (select uu.id from user uu where uu.name like '%a%' and uu.id=u.id);
As you can see , Just add... To the subquery “and uu.id=u.id”, The query result is correct .
So why ?
summary :EXISTS Subquery can be regarded as an independent query system , Just to get true and false logical values ,EXISTS The tables of subquery and external query are two completely independent and unrelated tables ( When... In the second table name It contains a Your name exists , Then perform the operation of querying all users in the first table ), When we add id After Association ,EXISTS The tables of sub query and external query are unified , It is a virtual table formed by the combination of the two , It's the same table ( In this way, when the sub query finds the current row in the virtual table uu.name Contained in the a when , The corresponding in the current row of the virtual table u.id And u.name Query to )
So the focus of everything is on this ID Above Association , add to ID relation , The database will first pass the two tables through ID Associations are combined into a virtual table , All query operations are completed on this virtual table , The operation is the same table , Of course, it won't happen as before !
版权声明
本文为[Little brother]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204210601423248.html
边栏推荐
- 解决:cnpm : 無法加載文件 ...\cnpm.ps1,因為在此系統上禁止運行脚本
- Circuit on-line simulation
- Screenshot using projectmediamanager
- Eight bit binary multiplier VHDL
- : app: transformclasseswithrobustfordevrease meituan hot repair compilation error record
- redis优化系列(三)解决主从配置后的常见问题
- Esp32 (UART event) - serial port event learning (1)
- ESP32 LVGL8. 1 - textarea text area (textarea 26)
- Switching power supply design sharing and power supply design skills diagram
- static类变量快速入门
猜你喜欢

MySQL学习第五弹——事务及其操作特性详解

ESP32 LVGL8. 1 - roller rolling (roller 24)
![[record] typeerror: this getOptions is not a function](/img/c9/0d92891b6beec3d6085bd3da516f00.png)
[record] typeerror: this getOptions is not a function

Class loading process of JVM

【历史上的今天】4 月 23 日:YouTube 上传第一个视频;网易云音乐正式上线;数字音频播放器的发明者出生
![[记录]TypeError: this.getOptions is not a function](/img/c9/0d92891b6beec3d6085bd3da516f00.png)
[记录]TypeError: this.getOptions is not a function

The difference between ordinary inner class and static inner class

Introduction to ROS learning notes (I)

ESP32 LVGL8. 1 - input devices (input devices 18)

Druid SQL和Security在美团点评的实践
随机推荐
2022.04.23(LC_763_划分字母区间)
MySQL statement
Esp32 (UART 485 communication) - 485 communication of serial port (3)
PyGame tank battle
微搭低代码零基础入门课(第三课)
mysql_linux版本的下载及安装详解
Using bafayun to control the computer
[play with lighthouse] Tencent cloud lightweight server builds a full platform video analysis video download website
Esp32 (UART event) - serial port event learning (1)
Screen right-click menu in souI
Treatment of incomplete display of listview height
Disable Ctrl + Alt + Del
C1000k TCP connection upper limit test
电路在线模拟
RPM包管理
Codeforces Round #784 (Div. 4)
Druid SQL和Security在美团点评的实践
Fundamentals of machine learning theory -- some terms about machine learning
[advanced level 11 of C language -- character and string functions and their simulation implementation (2)]
Druid SQL和Security在美团点评的实践