In mysql I can query select * ... LIMIT 10, 30 where 10 represents the number of records to skip.
Does anyone know how I can do the same thing in delete statements where every record after the first 10 records get deleted?
|
Considering there is no
This will automatically number your rows in the order of a
Then, after checking the order is consistent with your needs (and maybe a dump of the table)
Finally, you may want to remove that field
|
||||
|
|
The following will NOT work:
But this will:
And this too:
|
||||
|
|
DELETE FROM TABLE WHERE ID IN (SELECT ID FROM TABLE LIMIT 10, 30). @Am commented that that does not work in "this version of MySQL". So although it isn't the answer to the question, it might be helpful for other answerers :) – Nanne Jul 3 '11 at 6:56