Quantcast
Channel: MySQL: Delete all rows older than 10 minutes - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Arno for MySQL: Delete all rows older than 10 minutes

The answer is right in the MYSQL manual itself."DELETE FROM `table_name` WHERE `time_col` < ADDDATE(NOW(), INTERVAL -1 HOUR)"

View Article



Answer by Ivar Bonsaksen for MySQL: Delete all rows older than 10 minutes

If time_created is a unix timestamp (int), you should be able to use something like this:DELETE FROM locks WHERE time_created < (UNIX_TIMESTAMP() - 600);(600 seconds = 10 minutes -...

View Article

MySQL: Delete all rows older than 10 minutes

I have a timestamp field in my table. How do I delete records older than 10 minutes old?Tried this:DELETE FROM locks WHERE time_created < DATE_SUB( CURRENT_TIME(), INTERVAL 10 MINUTE)Didn't work....

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images