I'm trying to make a query that will check for duplicates, and if I find duplicates I want to be able to update those accordingly. For example, I have the following data set, how do I only select the 2 rows that have the same value for 'position'?
ID position 1 0 2 1 3 2 4 1 5 3
In this example I would select rows 2 and 4 only.