1.带IN关键字的子查询

例如:查询t_book表和t_booktype表的内容:

select * from t_book;

MySql数据库查询(四)——子查询_------【MySQL基础篇】

select * from t_booktype;

MySql数据库查询(四)——子查询_子查询_02

若要查询bookTypeId在t_booktype表中的数据:

select * from t_book where bookTypeId in (select id from t_booktype);

MySql数据库查询(四)——子查询_数据库_03

可以看出没有bookTypeId等于4的这条数据,因为bookTypeId等于4不在t_booktype表中;

若要查询bookTypeId不在t_booktype表中的数据:

select * from t_book where bookTypeId not in (select id from t_booktype);

MySql数据库查询(四)——子查询_------【MySQL基础篇】_04

可以看出查到了booTypeId等于4的这条不在t_booktype表中的数据;

2.带比较运算符的子查询

先查看t_pricelevel表内容:select * from t_pricelevel;

MySql数据库查询(四)——子查询_mysql_05

查看price=80的书籍:

select * from t_book where price >=(select price from t_pricelevel where priceLevel = 1);

MySql数据库查询(四)——子查询_●  数据库_06

3.带exist关键字查询

例如:如果t_booktype表存在,才需要继续查询t_book表;

select * from t_book where exists (select * from t_booktype);

MySql数据库查询(四)——子查询_数据库_07

当然,也有not exists,在前面加上NOT即可;

4.带any的关键字子查询
例如:查询t_book表中price任何一个大于t_pricelevel表中price的数据:

select * from t_book where price > any (select price from t_pricelevel where priceLevel );

MySql数据库查询(四)——子查询_●  数据库_08

可以看出t_book表中price=24的数据并没有查出来;

5.带all的关键字查询

select * from t_book where price> all (select price from t_pricelevel);

MySql数据库查询(四)——子查询_mysql_09

t_book表中只有两条数据大于t_pricelevel表中最大的价格80;