SQLの結果を区切り文字を使って1つの文字列にする
PostgreSQL select ARRAY_TO_STRING(ARRAY(select a_column from a_table), ','); ARRAYの中のカラム数は1つしか入れられない。 MySQL select GROUP_CONCAT([distinct] a_column [order by a_column] SEPARATOR ',') from a_table; GROUP_CONCATの中にはdistinct、ord