子查询
一、子查询分为:
① 子查询做源(即放在from后)
②子查询做条件(即放在where后)
二、子查询运算符:
①exists
②in
③= (=S,集合S中最多只有一个元素)
④<><= &oracle账号gt;= (用法与=相同)
⑤some(或any),(但any在理解有歧义,尽量用some)
⑥all
三、子查询优化:
①在查询中尽量不使用”*”
②多表查询中尽量使用表别名
select * from 表名 别名;
或
select * from 表名 as 别名;