Jump to content

[SOLVED] Select from a certain month


bschultz

Recommended Posts

I'm trying to select only records from the month of March.

 

I've tried...

 

$sql = "SELECT date, title, text FROM table ORDER by date DESC WHERE `date` = DATE_SUB(CURDATE(),INTERVAL -2 month)";

 

and this...

 

$sql = "SELECT date, title, text FROM brian ORDER by date DESC WHERE `date` BETWEEN DATE_SUB(CURDATE( ) ,INTERVAL -2 MONTH) AND CURDATE( )";

 

 

Neither are working.  Can anyone help, please?

Link to comment
https://forums.phpfreaks.com/topic/103503-solved-select-from-a-certain-month/
Share on other sites

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.