お世話になります。
RailsでWebアプリを制作しているのですが、
タイトルの箇所で躓いているので質問させていただきます。
Lessonというモデルにlesson_day
というDate型のカラムと、
1時間なら1、2時間なら2と入力できる、integer型のset
というカラムがあるとします。
また、Lessonモデルは
belongs_to :student
となっています。
年度別かつ月別に、
student
の数を被りがないようにcountset
の合計時間をsum
したいのですが...
1の場合は、
ruby
1Lesson 2 .where(lesson_day: Date.new(2020, 4, 1)..Date.new(2021, 3, 31)) 3 .distinct 4 .group("extract(year from lesson_day)", "extract(month from lesson_day)") 5 .order("extract_year_from_lesson_day") 6 .count(:student_id)
としていて、
{[2020.0, 4.0]=>35, [2020.0, 5.0]=>28, [2020.0, 6.0]=>36, [2020.0, 7.0]=>37, [2020.0, 8.0]=>34, [2020.0, 9.0]=>27, [2020.0, 10.0]=>31, [2020.0, 11.0]=>38, [2020.0, 12.0]=>38, [2021.0, 1.0]=>36, [2021.0, 2.0]=>33, [2021.0, 3.0]=>39}
という風に、日付のソートが効いたデータが得られています。
対して、2の場合は、
ruby
1Lesson 2 .where(lesson_day: Date.new(2020, 4, 1)..Date.new(2021, 3, 31)) 3 .group("extract(year from lesson_day)", "extract(month from lesson_day)") 4 .order("extract_year_from_lesson_day") 5 .sum(:set)
としていて、
{[2020.0, 11.0]=>67, [2020.0, 9.0]=>47, [2020.0, 5.0]=>48, [2020.0, 7.0]=>60, [2020.0, 8.0]=>62, [2020.0, 6.0]=>59, [2020.0, 10.0]=>45, [2020.0, 12.0]=>65, [2020.0, 4.0]=>71, [2021.0, 3.0]=>70, [2021.0, 1.0]=>67, [2021.0, 2.0]=>58}
こちらは、日付のソートが効いていません。
この場合は、どのような問題が考えられるでしょうか?
ご存じの方いらっしゃいましたら、ご教授いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/17 00:02
2020/11/17 14:03