i'd like to display the values of the table with the same id in just one row and separate them with - or,
row id | base_id | auth_id --------+---------+--------- 4 | 1 | 1 5 | 1 | 3 6 | 2 | 2 7 | 2 | 6 8 | 2 | 5 result i expect
row id | base_id | auth_id --------+---------+--------- 1 | 1 | 1-3 2 | 2 | 2-6-5