Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

group by + sum on multiple columns in rails 3

I need to get a list of locations ordered by the number of picture that I have in the DB for these locations, here is my query

Location.select(:city).group(:city).order("SUM(images_count) DESC").sum(:images_count)

This worked like a charm, unfortunately, I now need to add province and country to prevent ambiguities to arise, so I now have this

Location.select(:city, :province, :country).group(:city, :province, :country).order("SUM(images_count) DESC").sum(:images_count)

And this is not working :(

Could someone help me out with this query?

like image 404
standup75 Avatar asked Nov 28 '22 03:11

standup75


1 Answers

I'm not very proud of my solution but it works:

Location.group(:city, :province, :country)
        .select(:city, :province, :country, "SUM(images_girl_count) as sum_images_count")
        .order("sum_images_count DESC")
        .collect{ |location| [location.city, location.province, location.country, location.sum_images_count] }

Any feedback?

like image 72
standup75 Avatar answered Nov 30 '22 18:11

standup75