數據庫查詢函數exists和in的簡單用法

一、in和 exists函數簡介: in 是把外表和內表作hash 連接,而exists是對外表作loop循環,每次loop循環再對內表進行查詢。 如果兩個表中一個較小,一個是大表,則子查詢表大的用exists,子查詢表小的用in: 例如:表A(小表),表B(大表)             select * from A where cc in (select cc from B);效率低,用到了
相關文章
相關標籤/搜索