I am trying to select from a table that contains some duplicate rows like the one below:
OS | Value |
---|---|
A | 5 |
A | 10 |
B | 5 |
B | 10 |
I am trying to remove duplicates from both columns to get only unique values. It doesn´t matter which value will be at which OS. It should get something like this:
OS | Value |
---|---|
A | 5 |
B | 10 |
Thank you!