Home > database >  Db2 grouping for other data splicing
Db2 grouping for other data splicing

Time:09-17

Select id, listagg (columnName) from tb_name group by f_id -- -- -- -- -- -- -- -- -- -- -- -- db2
Select id, group_concat (columnName) from tb_name group by f_id -- -- -- -- -- -- -- -- -- -- -- -- mysql
  •  Tags:  
  • DB2
  • Related