Jump to content

delete from database after time


gavin.sibley

Recommended Posts

I am trying to find a way of deleting entries from a database after a certain time, and also when there is another field in the database set to 0.

 

i have got so far with the code (will delete when other field is at 0) but nothing happens when i try to add in the time. my code im trying to use is below

 

mysql_query("DELETE FROM temp_users WHERE book_stage='0' and WHERE time() > [creation+60]");

 

creation being the name of the field in the database that holds the unix time stamp.

 

i need the entry to be deleted one hour after it was created if the book_stage hasnt been changed to 1 during this hour.

 

many thanks,

gavin

Link to comment
https://forums.phpfreaks.com/topic/258901-delete-from-database-after-time/
Share on other sites

  • 3 weeks later...
mysql_query("DELETE FROM temp_users WHERE book_stage='0' and WHERE time() > [creation+60]");

 

A proper query only has the WHERE keyword once.

 

DELETE FROM temp_users 
WHERE condition_1
AND condition_2
AND condition_3

 

The book_stage condition looks OK (although if it is an integer field, I would not use quotes around it).

 

For the time condition, you need to use mySql functions, or do the calculation in PHP and insert the value. Using the mySql functions would be the preferred method.

 

CURRENT_TIME > DATE_ADD(creation, INTERVAL 60 MINUTE)

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.