sql数据查询的集合查询:
select * from student 
where Sdept='CS'
union
select * from student 
where Sage <= 19;
可以实现,
把关键字union改成
intersect或except都无法实现
union 并操作  ,intersect 交操作,except 差操作请指教。