iT邦幫忙

2023 iThome 鐵人賽

DAY 12
0

union聯集
可以把多個搜尋結果合併在一起

-- 搜尋屬性的數目要是一樣的 否則會出錯,資料型態也都要一樣 例如下面都是VARHCAR
-- 員工名字 Union 客戶名字
select name from employee
union
select client_name from client
union
select branch_name
from branch;

-- 員工的ID跟名字 union 客人ID跟名字
select emp_id as total_id, name
from employee
union
selectclient_id, client_name
from client;


上一篇
SQL wildcards
下一篇
SQL Join
系列文
30 天學習資料庫30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言