有没有一种快速的方法可以从 中的所有表中获取所有列名MySQL,而不必列出所有表?
MySQL
select * from information_schema.columns where table_schema = 'your_db' order by table_name,ordinal_position