是否有一种快速的方法可以从 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
这篇关于如何获取 MySQL 中所有表的所有列的名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!