注意事项 1.在联合查询中 orderby 不能单独使用, 需要对查询语句使用括号才行 2.若想器生效 必须结合limit 关键字才可以 采用最大数 999999 (select * from stu where sex='男'orderby age desc limit 999999) union (select * from stu where sex='女'orderby age asc limit 999999);
子查询
子查询 含义: sub query从其他查出来的结果之上获取 一条select语句内部包含另外的select语句
分类: 按位置分类:子查询(select) 在外部查询(select语句)中出现的位置 ① from子查询:出现在from之后 ② where子查询:出现在where条件 ③ exists子查询:出现在exists里面
按结果分类:根据子查询得到的数据进行分类 (理论上任何一个查询得到的结果都可以理解为二维表) ① 标量子查询:子查询得到的结果是一行一列 ② 列子查询:子查询得到的结果是一列多行 ③ 行子查询:结果是多列一行(多列多行) ---都是在where之后 表子查询:结果是多行多列,出现的位置是在from之后
1.确定数据源 查找查询条件 -- 查询班级名为 Java01 的学生的信息 select * from stu where cid = (select id from cla where name='Java01');
-- 查询所有班级的学生信息(有的学生还没有正式进班) select * from stu where cid in (select id from cla);
-- 查询是否存在 年龄最大 且身高最高的学生的信息 select * from stu where age = (selectmax(age) from stu) and height = (selectmax(height) from stu);
---还可以利用行元素进行 查询 (age,height) 称之为行元素 select * from stu where (age,height)= (selectmax(age),max(height) from stu);