[SQL] 不合并重复数据 union all时间:2023-03-09 02:19:30 select * from A union select * from B --不合并重复行 select * from A union all select * from B --如果要对字段进行排序 select * from ( select id,... from A union all select id,... from B ) t order by ID