Jump to content

Date Grouping


The Little Guy

Recommended Posts

Currently I have this:

 

SELECT COUNT(*) as c, date FROM `stats` 
WHERE 
DATE_SUB(CURDATE(),INTERVAL 20 DAY) AND
owner_id = '1'
AND
project_id = '6'
GROUP BY date = 'YYYY-MM-DD' ORDER BY date DESC

 

It sorta works...

 

It is getting all the vals and grouping them into one.... I have two different days in there:

 

I have:

2008-09-13

and

2008-09-14

 

there are 7 rows total, 6 are day 13 and 1 is day 14, but it shows 7 in one row...

Link to comment
https://forums.phpfreaks.com/topic/124139-date-grouping/#findComment-640966
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.