Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to get the number of rows in a table for each date. Right now I am doing:

SELECT SUM(COUNT(*)) FROM videos_videoview GROUP BY date

What would be the correct syntax for the above?

In addition, the date is stored not as a date, but as datetime (2012-01-25 10:26:20). How would I GROUP BY date here, ignoring the time?

share|improve this question
Which RDBMS are you using? – Jack Maney Feb 22 '12 at 3:24
MySQL is the db – David542 Feb 22 '12 at 3:26
possible duplicate of How to group by date regardless of time? – JohnFx Feb 22 '12 at 4:48
So many duplicates, which one to pick.... – JohnFx Feb 22 '12 at 4:48

2 Answers

up vote 5 down vote accepted

As per the documentation, the DATE() function truncates a timestamp down to a date.

select DATE(date),count(1)
from videos_videoview
group by DATE(date);

Honestly, this is very, very basic SQL. Please read through the documentation of whatever RDBMS you're using or get a basic book on SQL.

Documentation: read it. Love it. Use it.

share|improve this answer

select date, count(*) from videos_videoview group by date;

Which DB are you using?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.