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)

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐