7、union并/intersect交

   union 跟 jion 有些许类似,因为这两个指令都可以由多个表格中撷取资料。 union只会返回不同的值 (类似 SELECT DISTINCT)。
select store_name from table_a
union
select store_name from test_b

注:只能查询含有相同字段的数据,不显示重复数据(相同的值只出现一次),不同的值要显示。

使用union all 可现实重复的数据:
select store_name from table_a
union all
select store_name from test_b
7、union并/intersect交


intersect  相同的值只会被列出一次,不同的值不会列出
select store_name from table_a
intersect
select store_name from test_b

你可能感兴趣的:(intersect)