在表中数据是这样的
st_no st_name directions others
1210 6th street Northwest
1210 8th ST NW NULL
需要输出像(1210,1210)(第6街,第8街)西北
非常感谢您提供的任何帮助。并且,如果它发挥作用,我使用Postgresql DB。
答案 0 :(得分:0)
试试这个
select string_agg(st_no,',') as st_no,
string_agg(st_name,',') as st_name,
string_agg(directions,',') as directions,
string_agg(others,',') as others from table1 group by st_no