<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
有一個需求, 需要從資料庫中匯出兩張表的資料到同一個excel中
鑑於是臨時的業務需求, 直接使用Navicat 進行查詢並匯出資料.
資料涉及到三張表
CREATE TABLE `bigdata_qiye` ( `id` bigint(64) NOT NULL COMMENT '主鍵', `tenant_id` varchar(12) DEFAULT '000000' COMMENT '租戶ID', `registration_type` int(2) DEFAULT NULL COMMENT '註冊型別(1.國有,2.民營,3.外資)', PRIMARY KEY (`id`) USING BTREE, KEY `bigdata_qiye_tenant_id` (`tenant_id`) USING BTREE, KEY `bigdata_qiye_id` (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='申報企業表';
CREATE TABLE `bigdata_qiye_report` ( `id` bigint(64) NOT NULL COMMENT '主鍵', `tenant_id` varchar(12) DEFAULT '000000' COMMENT '租戶ID', `qiye_id` bigint(64) DEFAULT '0' COMMENT '企業擴充套件資訊', `revenue` double(16,2) DEFAULT NULL COMMENT '營收', PRIMARY KEY (`id`) USING BTREE, KEY `bqr_qiye_id` (`qiye_id`) USING BTREE, KEY `bgr_tenant_id` (`tenant_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='企業申報資訊表';
CREATE TABLE `bigdata_tech_improve_impl` ( `id` bigint(64) unsigned zerofill NOT NULL COMMENT '主鍵', `tenant_id` varchar(12) DEFAULT '000000' COMMENT '租戶ID', `qiye_id` bigint(64) DEFAULT '0' COMMENT '企業擴充套件資訊', `total_input` decimal(64,2) DEFAULT NULL COMMENT '總投資', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='技改專案實施情況表';
需要合併匯出 bigdata_qiye_report 表與 bigdata_tech_improve_impl 表的資料
表 bigdata_qiye 與表 bigdata_qiye_report 是 一對多的關係
表 bigdata_qiye 與表 bigdata_tech_improve_impl 也是 一對多的關係
表 bigdata_qiye_report 與表 bigdata_tech_improve_impl 沒有關聯關係
希望匯出的excel格式
所以, 如果用連結查詢的話產生的結果會偏差
比如這樣
select bq.registration_type , bqr.revenue, btii.total_input from bigdata_qiye bq left join bigdata_qiye_report bqr on bqr.qiye_id = bq.id left join bigdata_tech_improve_impl btii on btii.qiye_id = bq.id
會產生許多的重複資料 .
解決方法
使用 union(對結果集去重) 或者 union all(不去重) 關鍵字 將兩個 select 語句的結果作為一個整體顯示出來
第一個sql
select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', bqr.revenue as '營收' from bigdata_qiye bq left join bigdata_qiye_report bqr on bqr.qiye_id = bq.id
第二個sql
select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', btii.total_input as '總資產' from bigdata_qiye bq left join bigdata_tech_improve_impl btii on btii.qiye_id = bq.id
合併 SQL
(select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', bqr.revenue as '營收' from bigdata_qiye bq left join bigdata_qiye_report bqr on bqr.qiye_id = bq.id) union all (select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別' btii.total_input as '總資產' from bigdata_qiye bq left join bigdata_tech_improve_impl btii on btii.qiye_id = bq.id)
執行, 報錯
原因: 使用 union 關鍵字時, 必須要保證兩張表的欄位一模一樣(包括順序)
所以 修改sql
sql _1 修改
select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', bqr.revenue as '營收', '' as '總資產' from bigdata_qiye bq left join bigdata_qiye_report bqr on bqr.qiye_id = bq.id
sql_2修改
select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', '' as '營收', btii.total_input as '總資產' from bigdata_qiye bq left join bigdata_tech_improve_impl btii on btii.qiye_id = bq.id
合併SQL
(select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', bqr.revenue as '營收', '' as '總資產' from bigdata_qiye bq left join bigdata_qiye_report bqr on bqr.qiye_id = bq.id) union all (select case bq.registration_type when 1 then '國有' when 2 then '民營' when 3 then '外資' else '' end as '註冊型別', '' as '營收', btii.total_input as '總資產' from bigdata_qiye bq left join bigdata_tech_improve_impl btii on btii.qiye_id = bq.id)
查詢結果
到此這篇關於MySQL 兩張表資料合併的實現的文章就介紹到這了,更多相關MySQL 資料合併內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45