Union是用与将多个查询的记录合成一个新的记录集,如下面语句执行
select t0,t1 from table1 where t3='abcd' ----(1)
union
select t2,t3 from table2 where t4='cde' ---(2)
union select a,b c from table3 where name='timy' ---(3)
产生的结果记录集中会包括在Union中的所有记录。
如(2)中产生3条记录、(3)产生5条记录,则在结果集中会全部包含这3条和5条记录。