子查询是嵌套查询,如:select * from table where id in (select id from table where .......); 后面的select id from table where .......就是子查询,这种查询像递归一样,效率不高。
连接查询是查询不同的表中的字段,如: select table1.field1, table2.field2 from table1 table2 where .......,这样查询后输出为table1中的field1和table2中field2,效率较高。 |