1、简单子查询
select name,age from person
where age >
(
select age from person
where name = '百度'
)
2、in嵌套查询
select name from person
where countryid in
(
select countryid from country
where countryname = '百度'
)
扩展资料:
嵌套查询的意思是,一个查询语句(select-from-where)查询语句块可以嵌套在另外一个查询块的where子句中,称为嵌套查询,其中外层查询也称为父查询,主查询,内层查询也称子查询,从查询。
子查询的语法规则
1、子查询的select查询总是使用圆括号括起来。
2、不能包括compute或for.browse子句。
3、如果同时指定top子句,则可能只包括order by子句。
4、子查询最多可以嵌套到32层。个别查询可能会不支持32层嵌套。
5、任何可以使用表达式的地方都可以使用子查询,只要它返回的是单个值。
6、如果某个表只出现在子查询中二不出现在外部查询中,那么该表的列就无法包含在输出中。
参考资料来源:百度百科-嵌套查询
1,简单子查询;select name,age from person
where age >
(
select age from person
where name = '孙权'
)
2,in嵌套查询;
select name from person
where countryid in
(
select countryid from country
where countryname = '魏国'
)
3,some嵌套查询
select name from person
where countryid = some --用等号和以下查询到的值比较,如果与其中一个相等,就返回
(
select countryid from country
where countryname = '魏国'
)
4,all嵌套查询
select name from person
where countryid >all --当countryid大于以下返回的所有id,此结果才为True,此结果才返回
(
select countryid from country
where countryname = '魏国'
)
5,exits嵌套查询
SELECT * FROM Person
WHERE exists
(
SELECT 1 --SELECT 0 SELECT NULL 返回结果都一样,因为这三个子查询都有结果集返回,因此总是True SELECT * FROM Person照常执行
)
但是如果子查询中因为加了条件而没有结果集返回,则主语句就不执行了:
SELECT * FROM Person
WHERE exists
(
SELECT * FROM Person
WHERE Person_Id = 100--如果不存在Person_Id的记录,则子查询没有结果集返回,主语句不执行
)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)