Vælg en UNION
alle kolonner undtagen PK'erne vil kun give dig distinkte rækker:
insert into new_table (<non-pk columns>)
select <non-pk columns> from tableA
union
select <non-pk columns> from tableB
Bemærk:union
fjerner dubletter.
Vælg en UNION
alle kolonner undtagen PK'erne vil kun give dig distinkte rækker:
insert into new_table (<non-pk columns>)
select <non-pk columns> from tableA
union
select <non-pk columns> from tableB
Bemærk:union
fjerner dubletter.