Oracle查询2张表差集、交集、并集

差集

select 字段1 from 表1 minus select 字段1 from 表2

交集

select 字段1 from 表1 intersect select 字段1 from 表2

并集

select 字段1 from 表1 union all select 字段1 from 表2

你可能感兴趣的:(Oracle查询2张表差集、交集、并集)