当前位置:网站首页>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
边栏推荐
- MVVM model
- Resolution: cnpm: unable to load file \cnpm. PS1, because running scripts is prohibited on this system
- Sogou cell thesaurus analysis (only extract words and word frequency)
- One of the reasons why the WebView web page cannot be opened (and some WebView problem records encountered by myself)
- Simplified path (force buckle 71)
- Introduction to micro build low code zero Foundation (lesson 3)
- ESP32 LVGL8. 1 - arc (arc 19)
- 剑指 Offer II 116. 省份数量-空间复杂度O(n),时间复杂度O(n)
- 解决:cnpm : 無法加載文件 ...\cnpm.ps1,因為在此系統上禁止運行脚本
- From technical system to business insight, the closing chapter of the practice of small and medium-sized R & D team structure
猜你喜欢

ESP32 LVGL8. 1 - img picture (IMG 20)

ESP32 LVGL8. 1 - checkbox (checkbox 23)

The difference between ordinary inner class and static inner class

Practice of Druid SQL and security in meituan review

One of the reasons why the WebView web page cannot be opened (and some WebView problem records encountered by myself)
![[popular science] CRC verification (I) what is CRC verification?](/img/80/a1fa10ce6781aebf1b53d91fba52f4.png)
[popular science] CRC verification (I) what is CRC verification?

redis优化系列(三)解决主从配置后的常见问题

The fifth bullet of MySQL learning -- detailed explanation of transaction and its operation characteristics

Chondroitin sulfate in vitreous

C: generic reflection
随机推荐
Simplified path (force buckle 71)
The first leg of the national tour of shengteng AI developer creation and enjoyment day was successfully held in Xi'an
Recyclerview control list item layout match_ Fundamental principle of parent attribute invalidation
[today in history] April 23: the first video uploaded on YouTube; Netease cloud music officially launched; The inventor of digital audio player was born
Sentinel规则持久化进Nacos
Nacos作为服务注册中心
The fifth bullet of MySQL learning -- detailed explanation of transaction and its operation characteristics
Résolution: cnpm: impossible de charger le fichier... Cnpm. PS1 parce que l'exécution de scripts est désactivée sur ce système
程序员如何快速开发高质量的代码?
std::stoi stol stoul stoll stof stod
WebView saves the last browsing location
Android Development: the client obtains the latest value in the database in real time and displays it on the interface
Screen right-click menu in souI
Tencent map and high logo removal method
[play with lighthouse] Tencent cloud lightweight server builds a full platform video analysis video download website
ESP32 LVGL8. 1 - bar progress bar (bar 21)
Seata处理分布式事务
C1000k TCP connection upper limit test
Feature selection feature_ selection--SelectKBest
Redis common interview questions