小编典典

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

all

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


阅读 86

收藏
2022-06-07

共1个答案

小编典典

select * from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position
2022-06-07