sql >> Base de Datos >  >> RDS >> PostgreSQL

Rails &Postgresql:¿cómo agrupar consultas por hora?

Podrías intentar lo siguiente

Model.group("DATE_PART('hour', updated_at)").count

ACTUALIZACIÓN:

Cómo encontrar registros

Model.where("DATE_PART('hour', updated_at) = ?", 5)