如何获取MySQL中所有表的所有列名称?

是否有一种快速的方法可以从中的所有表获取所有列名MySQL,而不必列出所有表?

回答:

select * from information_schema.columns

where table_schema = 'your_db'

order by table_name,ordinal_position

以上是 如何获取MySQL中所有表的所有列名称? 的全部内容, 来源链接: utcz.com/qa/403323.html

回到顶部