2013-01-23 111 views
1

我有下面的代碼檢索以下查詢次數:順序按數查詢

<% @count = Model.find(:all, :conditions => 
       {:action => actions, :controller => tempController}).count %> 

我只是想知道我是怎麼得到這個查詢從最高去到最低檢索的數訂購。

+0

訂購什麼,到底是什麼?您的查詢不會檢索事物列表;它檢索一個單一的號碼。 – 2013-01-23 10:33:42

回答

2

從視圖調用模型只是針對MVC。這是錯誤的方式

<% @count = Model.where({:action => actions, 
         :controller => tempController}).order("column_name").count %>