Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a database of records that I want to select the most recent week of days and group by the day to get the count per day on these records. If I was writing the MySQL query manually, I'd start with something like:

SELECT COUNT( id ) AS count, DAY( created_at ) AS the_day
FROM  `results` 
GROUP BY the_day

How can I use ActiveRecord to abstract this query so that it works for PostgreSQL as well? So, far, I've got a scope to select this query above, but I'm not positive this will work with PostgreSQL:

  scope :recent, lambda {
    select(['id', 'COUNT(id) AS the_count', 'DAY(created_at) AS the_day'])
    .where(:created_at => 7.days.ago.utc...Time.now.utc)
    .order('the_day DESC')
    .group('the_day')
  }
share|improve this question

1 Answer

up vote 2 down vote accepted

The SQL spec provides an extraction method that is DB-agnostic: EXTRACT(<unit> FROM <date>)

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.