很多时候用 exists 代替 in 是一个好的选择:
select num from a where num in(select num from b)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/3820.html
很多时候用 exists 代替 in 是一个好的选择:
select num from a where num in(select num from b)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/3820.html