I have a table with ~ 300.000 records which per pairs have same datetime on a specific column, e.g.
id date feat1 feat2
---------------------------------------------------------------------------
1 10-12-2013 21:35:10 4.2 4.6
2 10-12-2013 21:35:10 4.2 4.61
3 10-12-2013 21:35:20 4.4 4.3
4 10-12-2013 21:35:20 4.4 4.31
5 10-12-2013 21:35:30 4.6 4.4
6 10-12-2013 21:35:30 4.6 4.41
Obviously the records have identical date values identical per pairs. So i need a mysql query in order to eliminate duplicates and at the end to have only
1 10-12-2013 21:35:10 4.2 4.6
3 10-12-2013 21:35:20 4.4 4.3
5 10-12-2013 21:35:30 4.6 4.4
what is the mysql query which will compare records datetimes and eliminate duplicates?