在Rails 4.0中我有这个表,我想根据location_id的出现次数对其进行排序。在这种情况下,最受欢迎的location_id是3.我想按降序对表格进行排序,从顶部的location_id:3的所有记录开始。
Table Geochecks -
┌────┬─────────┬─────────────┬─────────────────────┬────────────────────┬─────────────────────┐
│ id │ user_id │ location_id │ message │ created_at │ updated_at │
├────┼─────────┼─────────────┼─────────────────────┼────────────────────┼─────────────────────┤
│ 1 ╎ 14 ╎ 2 ╎ Test test t ╎ 2013-07-23 13:3... ╎ 2013-07-23 13:37... │
│ 2 ╎ 12 ╎ 3 ╎ ╎ 2013-07-23 13:5... ╎ 2013-07-23 13:54... │
│ 3 ╎ 15 ╎ 2 ╎ <html lang="en" ... ╎ 2013-07-25 08:5... ╎ 2013-07-25 08:57... │
│ 4 ╎ 12 ╎ 3 ╎ Ohohohooh ╎ 2013-07-25 11:3... ╎ 2013-07-25 11:37... │
│ 5 ╎ 12 ╎ 3 ╎ Pff kjasakljdfas... ╎ 2013-07-25 11:3... ╎ 2013-07-25 11:37... │
│ 6 ╎ 15 ╎ 4 ╎ ╎ 2013-07-25 13:5... ╎ 2013-07-25 13:54... │
│ 7 ╎ 13 ╎ 4 ╎ dasfdasfdasfdasf ╎ 2013-07-25 14:3... ╎ 2013-07-25 14:30... │
│ 8 ╎ 13 ╎ 3 ╎ ╎ 2013-07-25 14:3... ╎ 2013-07-25 14:30... │
│ 9 ╎ 13 ╎ 2 ╎ Test check message ╎ 2013-07-25 14:3... ╎ 2013-07-25 14:31... │
│ 10 ╎ 13 ╎ 5 ╎ asdfdasfdasfdasfa ╎ 2013-07-25 14:4... ╎ 2013-07-25 14:42... │
│ 11 ╎ 16 ╎ 7 ╎ Hohohooh ╎ 2013-07-26 07:5... ╎ 2013-07-26 07:50... │
└────┴─────────┴─────────────┴─────────────────────┴────────────────────┴─────────────────────┘
我知道如何计算它们,例如:Geochecks.where(location_id: 3).count #=> 4
并考虑一个循环,它将通过整个表格执行.where().count
个请求,然后比较结果以找到最大的一个,但我很确定有一个更聪明的解决方案。
所需的输出:所需的输出应该是降序的location_id的列表。在这种情况下,它应该是:3, 2, 4, 5, 7
答案 0 :(得分:1)
因此,正如我在评论中指出的那样,使用SQL进行操作会相当复杂,需要熟练掌握SQL。但是在rails c
中有一点时间我找到了在Rails中做到这一点的方法!
此查询的结果将是Locations而不是Geochecks,但我认为这不会对您造成任何问题。
Location.joins(:geochecks).order('COUNT(geochecks.id) DESC').group('location.id')
答案 1 :(得分:-1)
我认为它应该有效:
Table.find(:all, :order => "location_id_count DESC")