ケースは次のとおりです。
ユーザーテーブルがあります
id email orders_counter
=================================
1 a@a.com 5
2 b@b.com 3
3 c@c.com 0
そして、ユーザーの他のデータのユーザーデータテーブル
id user_id title value
=======================================
1 1 Name Peter Johnson
2 1 Tel 31546988
3 2 Name Alan Johnson
4 2 Tel 56984887
すべてのユーザーを取得したい場合
1, orders_counter greater then 3
2, Name contain 'Johnson'
3, Tel contain '88'
同時に
私のSQLとは何ですか、そしてActiveRecordコードとは何であるかをrubyonrailsで実行したい場合は、1つずつ実行してからすべてを結合できますが、条件が構築される間、リソースを浪費しすぎます