mysql 查询每张表中所有的字段名
select COLUMN_NAME
from INFORMATION_SCHEMA.Columns
where table_name='表名称' and table_schema='数据库名称';
本文来自博客园,作者:CodeYaSuo,转载请注明原文链接:https://www.cnblogs.com/hany-postq473111315/p/15202618.html
select COLUMN_NAME
from INFORMATION_SCHEMA.Columns
where table_name='表名称' and table_schema='数据库名称';
本文来自博客园,作者:CodeYaSuo,转载请注明原文链接:https://www.cnblogs.com/hany-postq473111315/p/15202618.html