drumhrd Posted February 25, 2010 Share Posted February 25, 2010 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 Quote Link to comment https://forums.phpfreaks.com/topic/193324-need-help-selecting-info-based-on-date/ Share on other sites More sharing options...
drumhrd Posted February 25, 2010 Author Share Posted February 25, 2010 well..I did some googling. found my answer SELECT * FROM table WHERE datefield > DATE_ADD( CURDATE( ) , INTERVAL +2 DAY ) Quote Link to comment https://forums.phpfreaks.com/topic/193324-need-help-selecting-info-based-on-date/#findComment-1017933 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.