Author Topic: need help selecting info based on date  (Read 290 times)

0 Members and 1 Guest are viewing this topic.

Offline drumhrdTopic starter

  • Enthusiast
  • Posts: 75
    • View Profile
need help selecting info based on date
« on: February 25, 2010, 03:42:42 AM »
 :shrug:

I need a way query a DB and get results based on the DATE in the table.  where the <current date> is greater than  2 DAYs away from the DATE in the table.

so I have a table

DATES
--------
2009-4-2
2009-4-3
2009-4-4
2009-4-5
2009-4-6

$current_date = 2009-4-2

SELECT * FROM <TABLE> WHERE DATE > 2 days from $current_date;

I want to query the DB and should get 2009-4-4, 2009-4-5, and 2009-4-6




Offline drumhrdTopic starter

  • Enthusiast
  • Posts: 75
    • View Profile
Re: need help selecting info based on date
« Reply #1 on: February 25, 2010, 05:25:16 AM »
well..I did some googling.

found my answer

SELECT *
FROM table
WHERE datefield > DATE_ADD( CURDATE( ) , INTERVAL +2
DAY )