0

このようなクエリを作成する必要があります

JOIN users
        ON dialogs.`user_id` <> '.$this->user->id.'
        AND dialogs.user_id=users.id
        OR dialogs.`to` <> '.$this->user->id.'
        AND dialogs.`to`=users.id

しかし、on()メソッドを使用するたびに、ORMは「AND」ステートメントを追加します。ANDの代わりにORを追加することは可能ですか?

4

1 に答える 1

0

あなたuser_id <> '.$this->user->id.'とは条項に含まdialogs.to <> '.$this->user->id.'れている必要がありwhereます。そこで、or_whereを使用できます。

于 2012-10-24T06:29:50.473 に答える