I have a table that I need to find duplicate entries for based on 3 values. If 2 or more rows contain the same values for col_A, col_B, and col_C then they are duplicates.
I was able to do this when the duplicates were determined by a single column using:
SELECT col_A, COUNT(col_A) AS Expr1...