我有像2014/03/01,2014/02/20,2014/02/19,2014/02/18,2014/01/19 ...如何在postgresql和rails中按月分組3
我想每個月都得到金額(價格)。對於第一個月,第二個,第三個月,...
使用rails 3 & postgresql。
我試過@items = Item.where(:asin => @item.asin, :domain => @item.domain, :user_id => @item.user_id).order('created_at desc').group {created_at.beginning_of_month }
沒有工作。
我嘗試過其他的東西太多,但它似乎是由日誌SELECT "items".* FROM "items" WHERE "items"."asin" = 'B00HI6ZLL2' AND "items"."domain" = 'co.jp' AND "items"."user_id" = 1 ORDER BY created_at desc
如果您提供了一些您已經寫過的代碼,那可能會有幫助。或者你的模型,控制器是怎麼樣的? – Emu
更新:)我嘗試了其他的東西,但它似乎被忽略。我在日誌中獲取SELECT「items」。* FROM「items」WHERE「items」。「asin」='B00HI6ZLL2'AND「items」。「domain」='co.jp'AND「items」。「user_id」= 1 ORDER BY created_at desc – whitesiroi
我從你的問題中瞭解到,你的物品模型中有一個價格字段,並且你想總結在過去三個月中創建的每個物品的價格。我對麼? – Emu