MySQL数据库:合并结果集
程序员文章站
2022-11-07 08:30:41
合并结果集 union 合并结果集 对合并后的结果集中的重复数据也会自动去重 如果不想去重 则使用 union all ......
合并结果集
union----合并结果集
对合并后的结果集中的重复数据也会自动去重
select sname from students union select tname from teachers;
如果不想去重 则使用 union all
select sname from students union all select tname from teachers;
推荐阅读