ユーザ用ツール

サイト用ツール


サイドバー

プログラム言語:php:laravel:クエリビルダ:join

Laravelのクエリビルダ:JOIN

INNER JOIN

$users = DB::table('users')
    ->join('posts', 'users.id', '=', 'posts.user_id')
    ->get();

JOIN の中で、さらに AND など複数の条件で絞り込みたい場合は、use で変数を渡せます。

$users = DB::table('users')
    ->join('posts', function ($join) use ($pref) {
        $join->on('users.id', 'posts.user_id')
            ->where('posts.pref', $pref);
    })
    ->get();

コメント

コメントを入力. Wiki文法が有効です:
 
プログラム言語/php/laravel/クエリビルダ/join.txt · 最終更新: 2021/10/15 16:18 by humolife