Hello, is there a way to remove rows that contain duplicate data in a specific row.
For example, Table A has columns X, Y, Z.
if a few entries were like:
1, 2, 3
g, v, d
6, 5, 3
7, 5, 5
4, 3, 3
As you can see, in column Z, 3 appears three times. Is there a way to delete two of them? (does not matter which one is left).
This is only a simplified example, in reality there are four-five columns that must be unique like this.
If there is a SELECT statement that could produce these results that would work too!
Thanks in advance