有没有办法以字符串格式返回MySQL表中的所有列?
我想得到这样的东西:
course_id, name, par, yds, mtrs 等等。
course_id, name, par, yds, mtrs
我知道如何在表格(SHOW FIELDS FROM course;)中显示字段/列,但是以表格格式返回这些字段/列。
SHOW FIELDS FROM course;
select group_concat(column_name separator ', ') from information_schema.columns where table_name = 'course' group by table_name