Dies erreichen Sie, indem Sie alle Spaltennamen aus table2
auswählen die nicht erscheinen auch in table1
:
SELECT column_name
FROM information_schema.columns
WHERE table_schema = 'your_schema' AND table_name = 'table2'
AND column_name NOT IN
(
SELECT column_name
FROM information_schema.columns
WHERE table_schema = 'your_schema' AND table_name = 'table1'
)