如何获取 MySQL 中所有表的所有列的名称?
是否有一种快速的方法可以从 MySQL
中的所有表中获取所有列名,而不必列出所有表?
Is there a fast way of getting all column names from all tables in MySQL
, without having to list all the tables?
推荐答案
select * from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position
相关文章