將 SELECT 語句與 UNION 結合使用
你可以將兩個結構相同的查詢的結果與 UNION
關鍵字組合在一起。
例如,如果你想要一個包含兩個單獨表格的所有聯絡資訊列表,例如 authors
和 editors
,你可以使用 UNION
關鍵字,如下所示:
select name, email, phone_number
from authors
union
select name, email, phone_number
from editors
使用 union
本身將刪除重複。如果你需要在查詢中保留重複項,可以使用 ALL
關鍵字,如:UNION ALL
。