MySQL Forums
Forum List  »  Triggers

Re: limit number of rows using a trigger
Posted by: Darren White
Date: March 13, 2012 04:09AM

another issue is that my log grows once a second for 30 days so I end up with around 2.7 million rows so "COUNT(*)" may end up slow.

perhaps I could just use the time stamp like this?:

SELECT MIN (last_update) INTO @min FROM a_test;
IF NEW.last_update - @min >= 30 THEN
DELETE FROM a_test ORDER BY last_update LIMIT 1;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: limit number of rows using a trigger
1936
March 13, 2012 04:09AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.