I have a simple query like this:
I want to return all of the rows where there is more than 1 row where the values in these three columns are the same, ordered by ColA (including the duplicate rows!).
Any ideas?
There's a thin line between genius, and insanity!
Code:
SELECT ColA, ColB, ColC FROM TableA
I want to return all of the rows where there is more than 1 row where the values in these three columns are the same, ordered by ColA (including the duplicate rows!).
Any ideas?
There's a thin line between genius, and insanity!