Le INFORMATION_SCHEMA.COLUMNS table a ce que vous demandez.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position
Le INFORMATION_SCHEMA.COLUMNS table a ce que vous demandez.
SELECT table_name, column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_schema = 'YourDBName'
ORDER BY table_name, ordinal_position