1、子查询 in
select * from 表名 where 字段 in (查询语句);
2、 子查询 exists
select * from 表名 where exists (查询语句);
3、 子查询 any
select * from 表名 where 字段 > any (查询语句);
4、 子查询 all
select * from 表名 where 字段 > all (查询语句);
1、子查询 in
select * from 表名 where 字段 in (查询语句);
2、 子查询 exists
select * from 表名 where exists (查询语句);
3、 子查询 any
select * from 表名 where 字段 > any (查询语句);
4、 子查询 all
select * from 表名 where 字段 > all (查询语句);