主页 > 知识库 > MYSQL使用Union将两张表的数据合并显示

MYSQL使用Union将两张表的数据合并显示

热门标签:拉卡拉外呼系统 智能外呼系统复位 话务外呼系统怎么样 高清地图标注道路 云南电商智能外呼系统价格 临清电话机器人 外东北地图标注 大众点评星级酒店地图标注 400电话可以办理吗

使用UNION操作符

union:用于连接两个以上的 SELECT 语句的结果组合到一个结果集合中。多个 SELECT 语句会删除重复的数据。

使用union操作符会将多张表中相同的数据取值一次,如果想将表1和表2中的值完整的显示出来,可以使用union all。

演示

小伙伴们自行创建一下表。

表1数据如下: 

表2数据如下:

OK,表数据已经创建完成,一共五条数据,接下来我们去看一看union 和 union all 的使用。

使用union 看一下效果:

select t1.id id, t1.name name, t1.description description,t1.create_time time from table1 t1
UNION
select t2.id id, t2.name name, t2.description description,t2.create_date time from table2 t2

我们可以看到使用union只会查出来四条数据。其中两条是相同的数据,则显示一条。

使用union all 看一下效果:

select t1.id id, t1.name name, t1.description description,t1.create_time time from table1 t1
UNION ALL
select t2.id id, t2.name name, t2.description description,t2.create_date time from table2 t2

使用union all查出5条数据,ps:相同的数据也会查询出来。

拓展: 

为了区分哪张表中的数据,我们可以这样做

select t1.id id, t1.name name, t1.description description,t1.create_time time,'table1' type from table1 t1
UNION ALL
select t2.id id, t2.name name, t2.description description,t2.create_date time,'table2' type  from table2 t2

将两张表中的数据按时间排序

select t3.* from (select t1.id id, t1.name name, t1.description description,t1.create_time time,'table1' type from table1 t1
UNION ALL
select t2.id id, t2.name name, t2.description description,t2.create_date time,'table2' type  from table2 t2) t3 order by t3.time desc

到此这篇关于MYSQL使用Union将两张表的数据合并显示的文章就介绍到这了,更多相关mysql数据合并显示内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
  • MySQL union 语法代码示例分析
  • mySQL UNION运算符的默认规则研究
  • MySQL如何使用union all获得并集排序
  • MySQL中UNION与UNION ALL的基本使用方法
  • 浅析mysql union和union all
  • mysql如何将多行数据合并成一行

标签:阿里 无锡 福州 定西 山西 扬州 温州 三明

巨人网络通讯声明:本文标题《MYSQL使用Union将两张表的数据合并显示》,本文关键词  MYSQL,使用,Union,将,两张,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《MYSQL使用Union将两张表的数据合并显示》相关的同类信息!
  • 本页收集关于MYSQL使用Union将两张表的数据合并显示的相关信息资讯供网民参考!
  • 推荐文章