mysql_DML_select_union

使用union可以将多个select 语句的查询结果集组合成一个结果集。
select 字段列表1 from table1
union [all]
select 字段列表2 from table2...
说明:字段列表1与字段列表2的字段个数必须相同,且具有相同的数据类型。合
并产生的新结果集的字段名与字段列表1中的字段名对应。

eg:

select stu_id,stu_name from teacher

union

select stu_id,stu_name from stu;

union 和union all  前者去重 后者不去重

时间: 2024-10-21 10:14:54

mysql_DML_select_union的相关文章