0
このクエリをrails active recordsスタイルで書くにはどうすればいいですか?railsのactiverecordスタイルで同じテーブルを参照するにはどうすればいいですか
select distinct listmonth,
(select count(1) from listing where listmonth between dateadd(month, -3, l.listmonth) and dateadd(month, -1, l.listmonth)) as cnt
from listing l
group by listmonth
order by listmonth