is there an equivalent of oracle’s rowid in mysql?
delete from my_table where rowid not in (select max(rowid) from my_table group by field1,field2)
I want to make a mysql equivalent of this query!!!
What i’m trying to do is, : The my_table has no primary key.. i’m trying to delete the duplicate values and impose a primary key (composite of field1, field2)..!!
In MySql you usually use session variables to achive the functionality:
But you can not make sorts on the table you are trying to delete from in subqueries.
UPD: that is you will need to create a temp table, insert the ranging subquery to the temp table and delete from the original table by joining with the temporary table (you will need some unique row identifier):
Since that is one time operation, this should not bring too much overhead.