I'm trying to return a single description if the primary key are equal, for example, I have this return:
CD_TABLE | DS_TABLE | DS_ANOTHER_TABLE
------ | ------ | ------
1 | TEST-01 | TEST-X
2 | TEST-02 | TEST-Y
2 | TEST-02 | TEST-W
3 | TEST-03 | TEST-Z
As second and third rows are the same information at the first column, is there a way to return this way?
CD_TABLE | DS_TABLE | DS_ANOTHER_TABLE
------ | ------ | ------
1 | TEST-01 | TEST-X
2 | TEST-02 | TEST-Y, TEST-W
3 | TEST-03 | TEST-Z