How can I do a LEFT OUTER JOIN using Rails ActiveRecord?

前端 未结 8 1062
终归单人心
终归单人心 2021-02-05 06:42

I don\'t have any ideas. Could you give me any clues (like reference sites). Any help will be appreciated.

Model1: GROUP         


        
8条回答
  •  心在旅途
    2021-02-05 07:38

    You can do this in rails 3.x regardless if you are referencing the table or not in a where clause:

    Group.eager_load(:user_group_cmb)
    

    ...and it will perform a left outter join

提交回复
热议问题