Hey community!
I have a question about filtering all unique rows from a table according to two selected columns, which should be unique.
example:
ID supplier product
1 X A
1 X B
2 Y A
2 Y A
result:
ID supplier product
1 X A
2 Y A
I wanna have all the unique ID and supplier rows.
So it does not matter what is written in column product but I still want to have any info there.
Thank you!
Antonius