Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table that represents a user's entries:

User_ID | Entry_ID

Now I want to store only the last 20 entries (for example).

What would be the best way to insert new entries while keeping the maximum number of entries per user at 20 (new entries will replace oldest entries) ?

I need to be able to insert also a list of items to replace the old ones (if possible, to avoid multiple SQL requests)

share|improve this question
Why dont you call a store procedure, in that SP delete old entries and insert new ones. Which DBMS are you using? – Abdul Muqtadir Jun 2 '11 at 7:41
I'm using SQLite – Yochai Timmer Jun 2 '11 at 7:56
1  
If a user has 17 entries and need to add 4 new entries, how do you choose which of the 17 gets deleted? Hint: you need a further column (effective_date, sequence_number) that is unique for each entry for each user. – onedaywhen Jun 2 '11 at 9:15

1 Answer

up vote 4 down vote accepted

Sounds like a job for a trigger...

Add a statement-level after insert trigger, which deletes rows like:

delete from yourtbl
where yourid not in (
  select yourid from yourtbl order by yourid desc limit 20
)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.