Jump to content

date minus one day


dachshund

Recommended Posts

I have a piece of code which adds up all of the 'views' column from rows added in the past 1 day.

 

I now need a piece of code which adds up all of the 'views' column from rows added the day before that.

 

Any help would be great. Here's my current code.

 

 

 
$sql = mysql_query("SELECT SUM(views) AS sum FROM table_name WHERE `date` >= SUBDATE(CURRENT_DATE, 1)");
 
Link to comment
https://forums.phpfreaks.com/topic/285417-date-minus-one-day/
Share on other sites

I think what you have actually looks at yesterday and today. You can look at yesterday only with


$sql = mysql_query("SELECT SUM(views) AS sum FROM table_name WHERE `date` = SUBDATE(CURRENT_DATE, 1)");

or the day before that with


$sql = mysql_query("SELECT SUM(views) AS sum FROM table_name WHERE `date` = SUBDATE(CURRENT_DATE, 2)");
Link to comment
https://forums.phpfreaks.com/topic/285417-date-minus-one-day/#findComment-1465441
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.