2017-02-13 17 views
0

私は左結合でいくつかのフィルタを追加したいのですが、親切に私を助けてくれる方法がわかりません。また、Eloquentでどのようにこのクエリを作成できるのか教えてください。私のクエリは以下の通りである:laravelの結合5.3単純なEloquent

select * from `users` 
join `halls` on `halls`.`user_id` = `users`.`id` 
left join `bookings` on `bookings`.`hall_id` = `halls`.`id` AND month(`bookings`.`date`) = 2 and day(`bookings`.`date`) = 4 and year(`bookings`.`date`) = 2017 
join `user_role` on `user_role`.`user_id` = `users`.`id` 
join `roles` on `roles`.`id` = `user_role`.`role_id` 
where 
    `roles`.`id` = 2 AND 

    (`bookings`.`id` is null OR `bookings`.`status` = 0) 

    group by users.id 

ユーザーと役割は、多くのと会場にユーザーとホール1、多くの関係に多くを持っており、予約も1多くの関係 ユーザーモデル関係

/** 
    * Many-to-Many relations with Role. 
    * 
    * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany 
    */ 
public function roles(){ 
    return $this->belongsToMany(Role::class, 'user_role', 'user_id', 'role_id')->select('roles.name'); 
} 
/** 
* One-to-Many relations with halls. 
* 
* @return \Illuminate\Database\Eloquent\Relations\hasMany 
*/ 
public function halls(){ 
    return $this->hasMany(Hall::class); 
} 

ホールを持っていますモデル関係

public function user(){ 

    return $this->belongsTo(User::class, 'user_id', 'id'); 
} 
public function bookings(){ 
    return $this->hasMany(Booking::class); 
} 

予約モデルRealtion

public function hall(){ 
    return $this->belongsTo(Hall::class)->distinct(); 
} 
+0

定義したモデルと関係を貼り付けることができますか? –

答えて

0

集計関数を使用せずにgroup byを使用する理由はわかりません。あなたのORMは以下のようになります

Users::join('halls', 'users.id', '=', 'halls.user_id') 
leftJoin('bookings', function($join){ 
    $join->on('halls.id', '=', 'bookings.hall_id'); 
    $join->on(DB::raw('month(`bookings`.`date`) = 2 and day(`bookings`.`date`) = 4 and year(`bookings`.`date`) = 2017')); 

}) 
->join('user_role', 'users.id', '=', 'user_role.user_id') 
->join('roles', 'roles.id', '=', 'user_role.role_id') 
->whereRaw('where 
    `roles`.`id` = 2 AND 

    (`bookings`.`id` is null OR `bookings`.`status` = 0)')->get(); 
関連する問題