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