I messed up a couple of tables in my database with similar results but different keys. The results are something like this:
1   |2   |3   
5   |25  |25
6   |25  |25
7   |31  |31
8   |31  |31
I would like to delete those duplicate rows so that the results are like this:
1   |2   |3
5   |25  |25
7   |31  |31
I tried SELECT * DISTINCT 2 FROM TABLE but that didn't work. Sorry I can't word it much better!
 
     
     
    