Jump to content

Limiting records


dannon
Go to solution Solved by mac_gyver,

Recommended Posts

How can I make it so that if there are more than 5 foreign ID's exist in the table, and every time a new foreign ID is inserted, the 6th oldest row gets removed, so I can limit how many rows of the same foreign ID can exist in the database?

Edited by dannon
Link to comment
Share on other sites

  • Solution

while it might be possible to do this in one delete/subquery query after you insert the new row, a straight forward method using php would be to -

 

1) run a select query that gets a row COUNT(*) and the MIN(id) row id for the foreign id value you just inserted.

 

2) if the row count is greater than 5 (the row you just inserted made six rows), delete the row who's row id is the minimum row id from step #1.

Link to comment
Share on other sites

Thank you!

 

I have created this query: 

 

SELECT @count := COUNT(*) AS "count", @min := MIN(id) AS "min" FROM `items` WHERE item_id = 5;
DELETE FROM `items` WHERE @count > 5 AND id = @min;

Is there a way to make it better?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.