美文网首页
Mysql查询数据库表中的所有字段

Mysql查询数据库表中的所有字段

作者: 朝闻道夕睡觉 | 来源:发表于2019-06-16 10:51 被阅读0次

查询表中的全部字段:

select COLUMN_NAME from information_schema.COLUMNS where table_name = '表名';
拼接表中全部字段:
select group_concat(COLUMN_NAME) from information_schema.COLUMNS where table_name = '表名';
拼接符
    select id,group_concat(name separator ';') from '表名' group by id;  

相关文章

网友评论

      本文标题:Mysql查询数据库表中的所有字段

      本文链接:https://www.haomeiwen.com/subject/ebjufctx.html