Du vil gerne vælge kolonner som NULL
at optage den tomme plads i visse tabeller.
Tabel A:(id, kolonne1)
Tabel B:(id, kolonne1, kolonne2)
Select id, column1, null as column2 from tableA
UNION
Select id, column1, column2 from tableB
Du vil gerne vælge kolonner som NULL
at optage den tomme plads i visse tabeller.
Tabel A:(id, kolonne1)
Tabel B:(id, kolonne1, kolonne2)
Select id, column1, null as column2 from tableA
UNION
Select id, column1, column2 from tableB