数据库查询函数exists和in的简单用法

一、in和 exists函数简介: in 是把外表和内表作hash 连接,而exists是对外表作loop循环,每次loop循环再对内表进行查询。 如果两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用in: 例如:表A(小表),表B(大表)             select * from A where cc in (select cc from B);效率低,用到了
相关文章
相关标签/搜索