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

I have an SQL table like this : sales(product,timestamp) I want to display a chart using Open Flash Chart but i don't know how to get the total sales per hour within the last 12 hours. ( the timestamp column is the sale date )

By example i will end up with an array like this : array(12,5,8,6,10,35,7,23,4,5,2,16) every number is the total sales in each hour.

Note: i want to use php or only mysql for this.

Thanks

share|improve this question

3 Answers

up vote 3 down vote accepted

The SQL is

SELECT HOUR(timestamp), COUNT(product)
FROM sales
ORDER BY HOUR(timestamp)

Loop over the result to get it into an array.

EDIT: Applying requested where condition for unix timestamp

SELECT HOUR(timestamp), COUNT(product)
FROM sales
WHERE timestamp >= UNIX_TIMESTAMP(DATE_SUB(NOW(),INTERVAL 12 HOUR))
ORDER BY HOUR(timestamp)
share|improve this answer
+1 for the sql only version. – zaf Apr 20 '10 at 18:14
Thanks man, that's clean – Ryan Apr 20 '10 at 18:25
I forgot, i want it to only get the latest 12 hours :D i think Keith's Date_sub doesn't work for me – Ryan Apr 20 '10 at 19:46
Updated the answer, for future reference dev.mysql.com/doc/refman/5.1/en/… – Unreason Apr 20 '10 at 20:01
SELECT HOUR(timestamp),COUNT(*)
FROM sales
WHERE timestamp >= DATE_SUB(NOW(),INTERVAL 12 HOUR)
GROUP BY HOUR(timestamp)
share|improve this answer
1  
+1 for reading the question in detail :) – Unreason Apr 20 '10 at 18:50
The timestamp >= DATE_SUB(NOW(),INTERVAL 12 HOUR) part doesn't work :( maybe because it's a Unix time stamp? – Ryan Apr 20 '10 at 19:45

Some pseudo code:

foreach timestamp
  use date('G',timestamp) to get hour
  increment array value using the hour as key

Something along those lines. Watch out for timezones.

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.