sql中all,any,some用法

前端之家收集整理的这篇文章主要介绍了sql中all,any,some用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

--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)

原文链接:https://www.f2er.com/mssql/64266.html

猜你在找的MsSQL相关文章