The only thing you change here is your database name ( Table_Name , Column_Name fixed). try the following:
SELECT Table_Name, Column_Name FROM information_schema.columns WHERE table_schema = 'databaseName'
or you can also select all fields
SELECT * FROM information_schema.columns WHERE table_schema = 'databaseName'
source share