I need a query which will delete all the records from the table which has exactly same row(even same id) but keep only one.
Here is my database structure:
[ ID STATUS ]
'1', 'New Request'
'1', 'New Request'
'2', 'Old Request'
A query which will delete the first or maybe the second row but keep one record. So, there can be 3 , 4 or maybe more identical records but i have to delete all and keep only one. Please, assist me.