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


当前回答

您可以使用此查询查询特定数据库中每个表的所有列

select
    TABLE_SCHEMA,
    TABLE_NAME,
    COLUMN_NAME
from
    information_schema.columns
where
    table_schema = 'database_name'
order by 
    table_name,
    ordinal_position;

其他回答

问题是:

是否有一个快速的方法,从MySQL所有表中获得所有的列名,而不必列出所有的表?

SQL来获取每列的所有信息

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

获取所有的列名

select COLUMN_NAME from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position
SELECT * FROM information_schema.columns
WHERE table_schema = DATABASE()
ORDER BY table_name, ordinal_position

因为我没有足够的代表来评论,这里有一个小的改进(在我看来)尼克rulez的优秀答案:替换WHERE table_schema = 'your_db'与WHERE table_schema = DATABASE()。

select column_name from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position

您可以使用此查询查询特定数据库中每个表的所有列

select
    TABLE_SCHEMA,
    TABLE_NAME,
    COLUMN_NAME
from
    information_schema.columns
where
    table_schema = 'database_name'
order by 
    table_name,
    ordinal_position;

我很久以前写了这个愚蠢的东西,现在仍然时不时地使用它:

https://gist.github.com/kphretiq/e2f924416a326895233d

基本上,它先执行“SHOW TABLES”,然后对每个表执行“DESCRIBE”,然后将其作为markdown输出。

只要在“if name”下面编辑,就可以了。您需要安装pymysql。