pgsql:关联查询union(并集)、except(差集)、sql中union多表合并
intersect(交集)
联合查询的规则是:
字段的个数和顺序必须相同
查询中的相应字段必须具有兼容的数据类型
要对合并后的结果集进⾏排序,可以在最后⼀个查询后⾯加上 order by 只在最后⼀个查询后⾯加,不是每个查询都加。
1.union
union会移除所有重复的⾏,要保留重复的⾏,需要使⽤ union all。
-- 有语⽂成绩或数学成绩的学⽣
select stu_name from exam_score where subject in('语⽂')
union
select stu_name from exam_score where subject in('数学') order by stu_name;
返回在第⼀张表出现,但在第⼆张表不存在的记录,两张表查询有先后顺序之别
-- 有语⽂成绩中没有数学成绩的
select stu_name from exam_score where subject in('语⽂')
except
select stu_name from exam_score where subject in('数学') order by stu_name;
3.intersect(交集)
-- 既有语⽂成绩⼜有数学成绩的学⽣
select stu_name from exam_score where subject in('语⽂')
intersect
select stu_name from exam_score where subject in('数学') order by stu_name;
交集也可以⽤平常⽤的inner join来替代

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。