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


当前回答

列出MySQL表中的所有字段:

select * 
  from information_schema.columns 
 where table_schema = 'your_DB_name' 
   and table_name = 'Your_tablename'

其他回答

如果它对其他人有用,这将为您提供每个表中以逗号分隔的列列表:

SELECT table_name,GROUP_CONCAT(column_name ORDER BY ordinal_position)
FROM information_schema.columns
WHERE table_schema = DATABASE()
GROUP BY table_name
ORDER BY table_name

注意:在使用具有大量列和/或具有较长的字段名的表时,要注意group_concat_max_len限制,这可能导致数据被截断。

最好使用以下查询来获取所有列名 很容易

显示tablename中的列

您可以使用information_schema简单地获取一个表的所有列。列只需添加group_concat以获得逗号分隔的列列表。

select group_concat( column_name ) as ColumnNames from information_schema.columns where table_schema = 'ur_db_name' and table_name = 'ur_tbl_name'
select column_name from information_schema.columns
where table_schema = 'your_db'
order by table_name,ordinal_position

列出MySQL表中的所有字段:

select * 
  from information_schema.columns 
 where table_schema = 'your_DB_name' 
   and table_name = 'Your_tablename'