Ruby on Rails Thursday, December 6, 2012

Hi,

I am executing this query:

=====
@monthly_data = ReviewRating.group("date_format(insertdate, '%Y/%m'),
type").count(:conditions => {:insertdate => '2011-01-01'..'2099-01-01'})

(12.7ms) SELECT COUNT(*) AS count_all, date_format(insertdate,
'%Y/%m'), type AS date_format_insertdate_y_m_type FROM
`tc_reviews_rating` WHERE (rev_user_id != 0) AND
(`tc_reviews_rating`.`insertdate` BETWEEN '2011-01-01' AND '2099-01-01')
GROUP BY date_format(insertdate, '%Y/%m'), type

=> {1=>477, 2=>26}
=====

where as if I execute the SQL directly, I get the correct data.


What am I doing incorrect? Thanks in advance for the help.


Pradeep

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment