两个表A 和表 T
交集 intersect
并集 UNION
SQL:select df from A union select sd from T;
在Union后不加ALL则会去除重复的列 若家ALL则会显示全部
SQL: select df from A union all select sd from T;