①交集
內連線
②並集全外連線
有的dbms不支援全外連線,比如mysql,可以使用union all來實現全外連線:
select * from table_a
inner
join table_b on table_a.id = table_b.id
union
allselect * from table_a
left
outer
join table_b on table_a.id = table_b.id
where table_b.id is
null
union
allselect * from table_a
right
outer
join table_b on table_a.id = table_b.id
where table_a.id is
null
③差集左外連線、右外連線
④異或集全外連線-內連線
SQL集合運算
集合運算是對輸入的兩個或多個集合進行的運算,最終輸出乙個結果集。t sql支援3種集合運算 並集 union 交集 intersect 和差集 except 集合運算的基本格式為 輸入的集合1 集合運算 輸入的集合2 order by 需要注意的是,集合運算涉及的兩個查詢不能包含order by 子...
SQL集合運算
1.表的加減法 1 定義 集合在數學領域表示 各種各樣的事物的總和 在資料庫領域表示記錄的集合.具體來說,表 檢視和查詢的執行結果都是記錄的集合,其中的元素為表或者查詢結果中的每一行。在標準 sql 中,分別對檢索結果使用union,intersect,except來將檢索結果進行並,交和差運算,像...
SQL集合運算
本系列 t sql基礎 主要是針對t sql基礎的總結。t sql基礎 01.單錶查詢 幾道sql查詢題 t sql基礎 02.聯接查詢 t sql基礎 03.子查詢 t sql基礎 04.表表示式 上篇 t sql基礎 04.表表示式 下篇 t sql基礎 05.集合運算 本系列 t sql基礎 ...