Is there a fast way of getting all column names from all tables in MySQL, without having to list all the tables?
MySQL
select * from information_schema.columns where table_schema = 'your_db' order by table_name,ordinal_position
1.4m articles
1.4m replys
5 comments
57.0k users