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

OK I might be asking a stupid question, but I'm banging my head over this..

Say I have a table like so:

FullName | DownloadDate
-------- | -----------------------
Jack     | 2012-03-21 00:00:00.000
Joe      | 2012-03-21 00:00:00.000
John     | 2012-03-22 00:00:00.000

I want to return the number of downloads by date so the resulting table is:

DownloadDate            | TotalDownloaded
------------------------| ---------------
2012-03-21 00:00:00.000 | 2
2012-03-22 00:00:00.000 | 1

How can I achieve this?

Also, you can assume that in my date column in the original data, I will always have a time of '00:00:00.000'.

share|improve this question
What did you try? Post your SQL – rs. Mar 22 '12 at 18:29

4 Answers

up vote 4 down vote accepted

try this:

SELECT DownloadDate, Count(DownloadDate) as TotalDownloaded
FROM yourtable
GROUP BY DownloadDate
share|improve this answer
OMG that worked perfectly THANK YOU :) – AshesToAshes Mar 22 '12 at 18:37
glad it worked! please be sure to accept this as the answer via the checkmark on the left. – bluefeet Mar 22 '12 at 18:38
SELECT DownloadDate, COUNT(DownloadDate) [TotalDownloaded]
FROM TableName
GROUP BY DownloadDate
share|improve this answer

Try this sql query:

SELECT DownloadDate,COUNT(FullName) AS TotalDownload
FROM YOURTABLE
GROUP BY DownloadDate
ORDER BY DownloadDate;
share|improve this answer
I posted this answer from my stackoverflow mobile app before... Thats why couldn't post in aligned manner... – SOaddict Mar 22 '12 at 19:17

This also works:

SELECT DownloadDate, COUNT(1) as [TotalNoOfDownloads] 
FROM TableName GROUP BY 1 
share|improve this answer
1  
GROUP BY 1 is not valid in SQL Server – Martin Smith Mar 26 '12 at 10:50

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.