0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelのクエリビルダでjoinする

Posted at

Laravelのクエリビルダでjoinするのに少しはまってしまったのでメモ。

以下の記載をしてみて、toSql()をしてSQLエディタに貼り付けると問題なく動くが、
Laravel上だとうまく動かない。。。

->leftJoin('table1', function ($join) use ('table2') {
                $join->on("table1.columnA", '=', "table2.columnA");
                $join->where("table1.columnB", '=', "table2.columnB");
            })

何が問題だったかというと、table2.columnBが文字列として扱われてしまっていた。
それを解決するにはwhereではなく、whereColumnを使用する必要があるとのこと。

->leftJoin('table1', function ($join) use ('table2') {
                $join->on("table1.columnA", '=', "table2.columnA");
                $join->whereColumn("table1.columnB", '=', "table2.columnB");
            })

単純な話ですがこれで無事に取得できました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?