Mysql
 sql >> Database >  >> RDS >> Mysql

Post medi all'ora su MySQL?

Puoi utilizzare una sottoquery per raggruppare i dati per giorno/ora, quindi calcolare la media per ora nella sottoquery.

Ecco un esempio per darti il ​​conteggio medio per ora negli ultimi 7 giorni:

select the_hour,avg(the_count)
from
(
  select date(from_unixtime(`date`)) as the_day,
    hour(from_unixtime(`date`)) as the_hour, 
    count(*) as the_count
  from fb_posts
  where `date` >= unix_timestamp(current_date() - interval 7 day)
  and created_on < unix_timestamp(current_date())
  group by the_day,the_hour
) s
group by the_hour