答案 0 :(得分:1)
如果您的数据库是MySQL,请使用:
select group_concat(col2 separator ', ') as str from myTable;
如果您的数据库是Oracle,请使用:
select listagg(col2, ', ') within group (order by col1) as str from myTable;
如果您的数据库是Postgres,请使用:
select string_agg(col2, ',' order by col1) as str from mytable;