摘要:
select * from A where id in(select id from B) 有两点区别: (1) 使用上的区别:exists中放一个子查询有记录返回true,无记录返回false(NULL也算有记录),in中查询结果集只能有一个字段 (2) 性能上的区别:in要把缓存到内存中,exi 阅读全文
摘要:
select * from A where id in(select id from B) 有两点区别: (1) 使用上的区别:exists中放一个子查询有记录返回true,无记录返回false(NULL也算有记录),in中查询结果集只能有一个字段 (2) 性能上的区别:in要把缓存到内存中,exi 阅读全文
|