0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Laravelメモ】Eloquent で JOIN したテーブルの同名カラムを取得する方法

Posted at

Laravel Eloquent で JOIN したテーブルの同名カラムを取得する方法

Laravel Eloquent で JOIN を使用する際、異なるテーブルに同じカラム名がある場合、そのまま取得すると競合が発生します。この問題を回避するために、SELECT 文でカラムに別名(エイリアス)を指定します。

サンプル

users テーブルと posts テーブルを JOIN し、それぞれの id カラムを取得する場合のコード例です。

use App\Models\User;

$users = User::join('posts', 'users.id', '=', 'posts.user_id')
             ->select('users.id as user_id', 'posts.id as post_id')
             ->get();

foreach ($users as $user) {
    echo $user->user_id;  // usersテーブルのid
    echo $user->post_id;  // postsテーブルのid
}
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?