sql中all,any,some用法
时间:2021-01-23 10:16:45|栏目:MsSql|点击: 次
--All:对所有数据都满足条件,整个条件才成立,例如:5大于所有返回的id
select *
from #A
where 5>All(select id from #A)
go
--Any:只要有一条数据满足条件,整个条件成立,例如:3大于1,2
select *
from #A
where 3>any(select id from #A)
select *
from #A
where 5>All(select id from #A)
go
--Any:只要有一条数据满足条件,整个条件成立,例如:3大于1,2
select *
from #A
where 3>any(select id from #A)
上一篇:vs code连接sql server数据库步骤及遇到的问题小结
栏 目:MsSql
下一篇:分享一下SQL Server执行动态SQL的正确方式
本文标题:sql中all,any,some用法
本文地址:http://www.codeinn.net/misctech/49970.html