查询数据表的所有列的列名
select group_concat(COLUMN_NAME SEPARATOR ',') from information_schema.COLUMNS where table_name = 'wx_fans';
mysql 查询数据表的所有列名
阅读 90
2022-07-27
查询数据表的所有列的列名
select group_concat(COLUMN_NAME SEPARATOR ',') from information_schema.COLUMNS where table_name = 'wx_fans';
相关推荐
精彩评论(0)