Is there a fast way of getting all column names from all tables in MySQL, without having to list all the tables?
MySQL
To list all the fields from a table in MySQL:
select * from information_schema.columns where table_schema = 'your_DB_name' and table_name = 'Your_tablename'