我有一個場景,我試圖查詢父表(文檔)與兩個相關聯的表(參考&用戶),這兩個表彼此沒有關係,但與父表。在SQL中,這個查詢看起來像這樣正確輸出我要尋找的數據: select *
from `document`
left join `user`
on `document`.`user_id` = `user`.`user_id`
left join `reference`
on `docum
我有2種型號,weekly_report和consult_stat,他們被組織成這樣: class ConsultStat < ActiveRecord::Base
belongs_to :weekly_report
end
class WeeklyReport < ActiveRecord::Base
has_many :consult_stats
end
我co
我有以下DB結構 任務 id name parent_id
1 Abc nil
2 Pqr 1
評論 id task_id body
1 1 This is sample comment
2 1 This is another sample comment
task.rb has_many :comments
comment.rb belongs_to :task
我的