Bạn có thể đạt được điều này bằng cách chọn tất cả các tên cột từ table2
cái nào không cũng xuất hiện trong 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'
)