El INFORMATION_SCHEMA.COLUMNS table tiene lo que estás pidiendo.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position
El INFORMATION_SCHEMA.COLUMNS table tiene lo que estás pidiendo.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position