Jump to content

Limiting records


dannon

Recommended Posts

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
https://forums.phpfreaks.com/topic/278679-limiting-records/#findComment-1433646
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.