Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using PHPMyadmin and putting values in a database using PHP. I store the expiry date of products using a timestamp as follows, FOR EXAMPLE:

2012-11-04

I want to select all where the expiry date is equal to todays date plus 8 days (such as the one above)

I also want to select all where expiry date is equal to todays date + 2 weeks in a seperate page if any one could help me out would be very grateful!

share|improve this question

2 Answers

up vote 2 down vote accepted

You can do that with a query like this:

SELECT * FROM table WHERE date = DATE(DATE_ADD(NOW(), INTERVAL 8 DAY))

You can use DATE_SUB for dates in the past.

share|improve this answer
thank you that worked perfectly :) – neeko Oct 27 '12 at 22:17
  1. Select all where the expiry date is equal to todays date plus 8 days
SELECT
    *
FROM
    products
WHERE
    products.expiry_date >= DATE(now())
AND
    products.expiry_date <= DATE_ADD(DATE(now()), INTERVAL 8 DAY)
  1. Select all where the expiry date is equal to todays date plus 2 weeks
SELECT
    *
FROM
    products
WHERE
    products.expiry_date >= DATE(now())
AND
    products.expiry_date <= DATE_ADD(DATE(now()), INTERVAL 2 WEEK)

These docs will be helpful for you:

http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-add

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.