Laravel 4.2使用带有连接查询的lists()来说服

时间:2014-11-03 11:53:30

标签: laravel-4 eloquent

我有一个使用多个连接的查询:

public function scopePurchased($query, $userId)
{

    return $query
                ->join('products','characters.id','=','products.productable_id')
                ->join('bundle_product','bundle_product.product_id','=','products.id')
                ->join('bundles','bundles.id','=','bundle_product.bundle_id')
                ->join('purchases','purchases.bundle_id','=','bundles.id')
                ->join('users','purchases.user_id','=','users.id')
                ->whereNull('purchases.deleted_at')
                ->where('purchases.refunded', false)
                ->where('products.productable_type', '=', get_class($this))
                ->where('users.id','=',$userId)
                ->groupBy('characters.id')
                ->orderBy('characters.title', 'ASC');

}

我想从此查询中检索一个ID数组,以便在另一个范围内使用:

$query->purchased($userID)->lists('id')

我最初的想法是使用列表(' id')抱怨对ID的模糊查询。

Column 'id' in field list is ambiguous 
(
SQL: select `id` from `characters` 
inner join `products` on `characters`.`id` = `products`.`productable_id` 
inner join `bundle_product` on `bundle_product`.`product_id` = `products`.`id` 
inner join `bundles` on `bundles`.`id` = `bundle_product`.`bundle_id` 
inner join `purchases` on `purchases`.`bundle_id` = `bundles`.`id` 
inner join `users` on `purchases`.`user_id` = `users`.`id` 
where `characters`.`deleted_at` is null 
and `purchases`.`deleted_at` is null 
and `purchases`.`refunded` = 0 
and `products`.`productable_type` = Character and `users`.`id` = 1 
group by `characters`.`id` 
order by `characters`.`title` asc
)

有道理,足够公平所以我将列表更改为

$query->purchased($userID)->lists('characters.id')

认为命名表和列应该修复它,但发现列表功能会删除'字符。'部分因此具有相同的错误。

看起来列表可能不会使用点符号,让我回答我的问题...我可以逃避点符号还是有另一种方法可以将ID列表作为数组?

非常感谢

1 个答案:

答案 0 :(得分:12)

您可以在使用lists之前为列名设置别名:

$query->purchased($userID)->select('characters.id as _id')->lists('_id');

这将避免任何列名冲突。