mysql 查看某个库下面某个表的所有列字段
select COLUMN_NAME as columnName from information_schema.COLUMNS where table_name = '{表名}' and table_schema = '{库名}';