1,子查询(Subquery)是指出现在其他 SQL 语句内的select子句 例如: select * from t1 where col1 = (select col2 from t2); 其中 select * from t1, 称为Outer Query/Outer Statement select col2 from t2 ,称为 SubQuery. 2,子查询指嵌套在查询内部,并且始终出现在圆括号内 子查询有多个关键字或条件,如 distinct , group by, order…