MySQL数据库:合并结果集
Posted 软二的小忠晏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL数据库:合并结果集相关的知识,希望对你有一定的参考价值。
合并结果集
union----合并结果集
对合并后的结果集中的重复数据也会自动去重
select sName from students
union
select tName from Teachers;
如果不想去重 则使用 union all
select sName from students
union all
select tName from Teachers;
以上是关于MySQL数据库:合并结果集的主要内容,如果未能解决你的问题,请参考以下文章