次のようなクエリを1つ作成します。
SELECT * FROM my_table where column_one <= column_two;
QueryBuilderを使用して作成できますが、 ;where().le(column_one, Object obj)
のようなものが必要です。where().le(column_one, column_two)
実際、私は次のクエリが必要です。
SELECT * FROM table_one INNER JOIN table_two ON table_one.column_foreign_id = table_two.id WHERE table_two.column_one<=table_two.column_two。
最善の方法は何ですか?
お時間をいただきありがとうございます。