标签:src info pre select rank exist bubuko 技术 inf
以前都用in很少用exists.因为不理解为什么在exists后面写select..
其实就是在任何地方都可以写子查询
用到的表:
--in select * from r_rank where rid in( select stu_id from r_class_info)
改为:
select * from r_rank a where exists (select 1 from r_class_info b where a.rid = b.stu_id)
标签:src info pre select rank exist bubuko 技术 inf
原文地址:https://www.cnblogs.com/dayanjing/p/10127194.html