I have the following result set:
ID | mark | cost | comment
1 yel 45 array
3 yel 45 tack
Now I want to only have 1 row like:
ID | mark | cost | comment
1 yel 45 array tack
if mark and cost are the same.
Any ideas on how to do that?