mysql 查询库中所有的字段,逗号分隔
Posted justcoder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 查询库中所有的字段,逗号分隔相关的知识,希望对你有一定的参考价值。
-- 查询mysql所有表及字段,字段逗号分隔
select table_name, concat('select ', group_concat(column_name order by ordinal_position SEPARATOR ','), ' from ', table_name) AS t_info from information_schema.COLUMNS where table_schema = 'schema' group by table_name
--查询pg所有表及字段,字段逗号分隔
select table_name, concat('select ', string_agg(column_name, ',' order by ordinal_position), ' from ', table_name) from information_schema.columns where table_schema='schema' group by table_name以上是关于mysql 查询库中所有的字段,逗号分隔的主要内容,如果未能解决你的问题,请参考以下文章
mysql 查询某字段中以逗号分隔的字符串的包含查询和关联查询实现