当前位置:网站首页>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
边栏推荐
- [today in history] April 23: the first video uploaded on YouTube; Netease cloud music officially launched; The inventor of digital audio player was born
- 剑指 Offer II 116. 省份数量-空间复杂度O(n),时间复杂度O(n)
- Esp01s with Arduino development environment
- Using bafayun to control the computer
- [record] typeerror: this getOptions is not a function
- SSDB基础
- Keysight has chosen what equipment to buy for you
- Simple use of viewbinding
- 12 examples to consolidate promise Foundation
- 程序员如何快速开发高质量的代码?
猜你喜欢
Introduction to micro build low code zero Foundation (lesson 3)
浅谈c语言指针的强制转换
MVVM model
mysql_ Download and installation of Linux version
WebView opens H5 video and displays gray background or black triangle button. Problem solved
12 examples to consolidate promise Foundation
MySQL学习第五弹——事务及其操作特性详解
12个例子夯实promise基础
ESP32 LVGL8. 1 - img picture (IMG 20)
The difference between ordinary inner class and static inner class
随机推荐
SSDB基础2
[record] typeerror: this getOptions is not a function
Esp32 drive encoder -- siq-02fvs3 (vscade + IDF)
剑指 Offer II 116. 省份数量-空间复杂度O(n),时间复杂度O(n)
Get a list of recent apps
Zlib realizes streaming decompression
MySQL restores or rolls back data through binlog
The type initializer for ‘Gdip‘ threw an exception
SSDB foundation 1
Sentinel规则持久化进Nacos
Sentinel rule persistence into Nacos
Accessing private members using templates
简化路径(力扣71)
Use bitnami / PostgreSQL repmgr image to quickly set up PostgreSQL ha
Switching power supply design sharing and power supply design skills diagram
从技术体系到商业洞察,中小研发团队架构实践之收尾篇
Using bafayun to control the computer
在渤海期货办理开户安全吗。
SSDB foundation 3
Nacos cluster construction and MySQL persistence configuration