I have a SQL table with news stories and Unix timestamps. I'd like to only keep the 50 newest stories. How would I write an SQL statement to delete any amount of older stories?
Edit: See my answer
|
|
|
|
|
|
|
Blockquote
You select the ids of the data you don't want to delete, and the you delete everything NOT IN these value... |
||||||||||
|
|
|
Maybe not the most efficient, but this should work:
|
||
|
|
|
Assuming this query selects the rows you want to keep:
Then you could use a subquery like so:
Of course, make sure you have a backup before doing anything as potentially destructive. Note that compared to the other approaches mentioned, which use |
||
|
|
|
Well, it sort of looks like you can't do it in one query - someone correct me if I'm wrong. The only way I've ever been able to do this sort of thing is to first figure out the number of rows in the table i.e.
then using the result do
You have to do it this way for two reasons -
|
||
|
|
|
|
If you have a lot of rows, it might be better to put the 50 rows in a temporary table then use TRUNCATE TABLE to empty the table out. Then put the 50 rows back in. |
||||
|
|
|
I ended up using two queries since MySQL5 doesn't yet support LIMIT's in subqueries
|
||
|
|