Course と ScheduledCourse という 2 つのモデルがあるとします。
Course モデルには name 属性があります。
course has_many :予定されているコース Scheduled_courses :belongs_to コース
courses
id | name
1 | biology
2 | history
3 | chemistry
4 | literature
scheduled_courses
id | course_id
1 | 2
2 | 4
3 | 1
4 | 2
スケジュールされたコースをアルファベット順に並べ替える ActiveRecord クエリを作成するにはどうすればよいですか?