我有四张桌子我需要在我的 Rails 模型中加入所有四张桌子我该怎么做
我的加入示例架构是
select * from
(
select id,name from table1
)a
left join
(
select * from table2
)b
on a.id=b.user_id
left join
(
select * from table3
)c
on a.id=b.ord_id
left join
(
select * from table4
)d
on a.id=d.other_id