0
我想弄清楚是否可以按日期從日期的特定時間到下一日期的時間對數據進行分組。 我一個bills
表PostgreSQL數據庫具有以下欄目:按特定時間在Rails中按日期分組
id serial NOT NULL,
bill_amount double precision,
tax_amount double precision,
discount double precision,
grand_total double precision,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
我想組由日期2015-09-12 06:00:00.00000
至今2015-09-13 06:00:00.00000
像條款,是指除2015-09-13 06:00:00.00000
少的所有記錄,比2015-09-12 06:00:00.00000
更大的將被視爲數據9月12日。所以如果我想按月分組得到一個月的數據,有可能嗎?
不,如果您正在尋找內置導軌方法來解決它。您可以始終圍繞這個想法提供邏輯 – Bijendra