Is there a fast way of getting all column names from all tables in MySQL, without having to list all the tables?
MySQL
Similar to the answer posted by @suganya this doesn't directly answer the question but is a quicker alternative for a single table:
DESCRIBE column_name;