MySQL Date Problem

Reply

Join Date: Aug 2009
Posts: 8
Reputation: dan_ord is an unknown quantity at this point 
Solved Threads: 0
dan_ord dan_ord is offline Offline
Newbie Poster

MySQL Date Problem

 
0
  #1
Sep 8th, 2009
Hi, I'm using Cron Jobs to set up an automated script which checks for jobs which were posted 7 days ago, which will then delete the record and send the customer out an email.

I've got a bit of knowledge using php and mysql however i'm not sure on how to do the 7 days ago thing.

Below is a very rough bit of code to try explain the process.

  1. "SELECT * FROM quotes WHERE job_status = 'active' AND date_posted is = to 7 days ago";
  2.  
  3. if num_rows > 0 THEN execute DELETE query etc..

Some thing along the lines of that. I know above code incorrect, it's just for demonstration purposes, but if anyone can help me with this it would be greatly appreciated!

Also the time format im using is: 2009-08-24 12:04:55

Cheers Dan.
Reply With Quote Quick reply to this message  
Join Date: Dec 2007
Posts: 190
Reputation: mwasif is an unknown quantity at this point 
Solved Threads: 25
mwasif mwasif is offline Offline
Junior Poster

Re: MySQL Date Problem

 
0
  #2
Sep 9th, 2009
The correct query will be

  1. SELECT * FROM quotes WHERE job_status = 'active' AND date_posted<= DATE_SUB(NOW(), INTERVAL 7 DAY)
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 8
Reputation: dan_ord is an unknown quantity at this point 
Solved Threads: 0
dan_ord dan_ord is offline Offline
Newbie Poster

Re: MySQL Date Problem

 
0
  #3
Sep 9th, 2009
Thanks, i'll give that a try!
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 8
Reputation: dan_ord is an unknown quantity at this point 
Solved Threads: 0
dan_ord dan_ord is offline Offline
Newbie Poster

Re: MySQL Date Problem

 
0
  #4
Sep 10th, 2009
That seemed to work fine!

Thanks very much!
Reply With Quote Quick reply to this message  
Join Date: Dec 2007
Posts: 190
Reputation: mwasif is an unknown quantity at this point 
Solved Threads: 25
mwasif mwasif is offline Offline
Junior Poster

Re: MySQL Date Problem

 
0
  #5
Sep 10th, 2009
You are welcome
Reply With Quote Quick reply to this message  
Reply

Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC