I have a mySql table ... quite simple (id, firstColumn, secondColumn) I want to make a query who display me the duplicate values in secondColumn with the same value in firstColumn
If i have something like that
1, 14, 1
2, 14, 2
3, 15, 1
4, 15, 2
5, 14, 2
6, 15, 1
7, 16, 1
8, 17, 1
my query to display duplicate values
5, 14, 2
6, 15, 1
Thanks
2,14,2and3,15,1included in your expected results? Can you clarify what you're trying to achieve? – Joe Stefanelli Aug 2 '11 at 15:49