convert rows to string in postgresql convert rows to string in postgresql sql sql

convert rows to string in postgresql


You can try this:

select string_agg(name1, ',') as Name1sfrom t1

string_agg