Il INFORMATION_SCHEMA.COLUMNS table ha quello che stai chiedendo.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position
Il INFORMATION_SCHEMA.COLUMNS table ha quello che stai chiedendo.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position