摘要:
--使用union子句的查询称为联合查询,功能:将两个以上的查询结果集组合为一个单个结果集,该集中包括所有集中的全部行数据--下面我们尝试将多个查询联合起来-- 默认地,UNION 操作符选取不同的值。如果允许重复的值,请使用 UNION ALL。select * from studio where cl_id=1unionselect * from studio where ho_id=1unionselect * from studio where st_age>=30--下面我们继续利用上面的例题,增加上 All 看下效果select * from studio where cl_ 阅读全文