union语句学习
基本用法
select 列名 from 表A
union (all)
select 列名 from 表B
注意事项
- 合并的表的列数必须是一致的,也就是表的列数要相同
- union 与union all 对两个查询结果合并的时候,如果结果有重复,union 会把重复的值删除;
- union 与union all不能与order by同时使用,如果要对结果进行排序,可以用子查询
2024-02-11 12:18:16
select 列名 from 表A
union (all)
select 列名 from 表B
下一篇:mysql查询优化 -执行计划