Ben bir veritabanından saat başına isabet çalışmak çalışıyorum. Veriler, şu şekilde temel olarak depolanır:
Table Name: Visitors
============================
VisitorIP TIMESTAMP
----------------------------
15.215.65.65 123456789
I want to display total hits per hour (within the last 6 hours ) including the hours that has no hits. Example of the output:
// Assuming now : 21:00
21:00 - 0 hits
20:00 - 1 hits
19:00 - 4 hits
18:00 - 0 hits
17:00 - 2 hits
16:00 - 3 hits
i dizisi verileri almak isterdim, depolanmış tarih UNIX zaman damgası biçimi olduğuna dikkat edin. ve herhangi bir hit olmadan birkaç saat olabilir!
Teşekkürler