我有兩個模型的學生和信息。這是一個由零的訂單?使用ActiveRecord移動所有的無相關值
Student | Information
Leo | nil
Paul | Some info1
Peter | Some info2
Rex | nil
如何訂購使用活動記錄,並會顯示這樣的結果是:
Student | Information
Paul | Some info1
Peter | Some info2
Rex | nil
Leo | nil
所有零Student.information.nil?將使用ActiveRecord向下移動。
請讓我知道它是否有幫助。 – Disha