What's the best way to delete all rows from a table in sql but to keep n number of rows on the top?
|
DELETE FROM Table WHERE ID NOT IN (SELECT TOP 10 ID FROM Table)? Edit: Chris brings up a good performance hit since the TOP 10 query would be run for each row. If this is a one time thing, then it may not be as big of a deal, but if it is a common thing, then I'd look closer at it. |
|||||||
|
|
I would select ID column(s) the set of rows that you want to keep into a temp table or table variable. Then delete all the rows that do not exist in the temp table. The syntax mentioned by another user:
Has a potential problem. The "SELECT TOP 10" query will be executed for each row in the table, which could be a huge performance hit. You want to avoid making the same query over and over again. This syntax should work, based what you listed as your original SQL statement:
|
||||
|
|
|
I don't know about other flavors but MySQL DELETE allows LIMIT. If you could order things so that the n rows you want to keep are at the bottom, then you could do a DELETE FROM table LIMIT tablecount-n. Edit Oooo. I think I like Cory Foy's answer better, assuming it works in your case. My way feels a little clunky by comparison. |
|||
|
|
|
This really is going to be language specific, but I would likely use something like the following for SQL server.
if you don't care about the exact number of rows, there is always
|
|||||
|
|
I would solve it using the technique below. The example expect an article table with an id on each row.
Edit: Too slow to answer my own question ... |
|||
|
|
|
Refactored?
edit: tried them both in the query analyzer, current answer is fasted (damn order by...) |
|||
|
|
|
Better way would be to insert the rows you DO want into another table, drop the original table and then rename the new table so it has the same name as the old table |
|||
|
|
|
Future reference for those of use who don't use MS SQL. In PostgreSQL use ORDER BY and LIMIT instead of TOP. DELETE FROM table WHERE id NOT IN (SELECT id FROM table ORDER BY id LIMIT n); MySQL -- well... Error -- This version of MySQL does not yet support 'LIMIT & IN/ALL/ANY/SOME subquery' Not yet I guess. |
|||
|
|
|
I think using a virtual table would be much better than an IN-clause or temp table.
|
|||
|
|
protected by Michael Petrotta Oct 9 '12 at 5:19
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.