查询某表所有字段 查询某表所有字段 select * from information_schema.columns where table_schema='模式名称' and table_name='表名'; 模式 查询某表字段个数 select count(*) from information_schema.columns where table_schema='模式名称' and table_name='表名';