Laravel UNION ALL 不适用于 where 语句

Posted

技术标签:

【中文标题】Laravel UNION ALL 不适用于 where 语句【英文标题】:Laravel UNION ALL not working with where statement 【发布时间】:2015-09-29 15:40:41 【问题描述】:

我想把两个队列合二为一。

$buildings_queue=IngameBuildingQueue::where(DB::raw('UNIX_TIMESTAMP(`start_time` + `duration`)'),'<=',time());
$recruit_queue=IngameRecruitQueue::where(DB::raw('UNIX_TIMESTAMP(`start_time` + `duration`)'),'<=',time());
$queue=$buildings_queue->unionAll($recruit_queue);
dd($queue->toSql());

Laravel 抛出:

[ErrorException] 未定义属性:Illuminate\Database\Eloquent\Builder::$bindings

但是当我删除 where() 方法时一切正常。

我该如何解决?

【问题讨论】:

【参考方案1】:

根据 Laravel 用户手册,这应该可以工作

IngameRecruitQueue::where(DB::raw('UNIX_TIMESTAMP(`start_time` + `duration`)'),'<=',time())->union($buildings_queue)->get();

也尝试用驼峰命名法编写你的变量

$buildings_queue 将是 $buildingsQueue

查看此答案以了解更多信息:https://softwareengineering.stackexchange.com/a/196463

【讨论】:

以上是关于Laravel UNION ALL 不适用于 where 语句的主要内容,如果未能解决你的问题,请参考以下文章

使用 union all 插入,并且 nextval 不适用于重复值

Laravel 查询生成器 order by 不适用于左连接

WHERE 子句中的优化似乎不适用于 UNION

UNION ALL vs UNION 用于更新/返回+选择?

UNION ALL UNION

Mysql联合查询union和union all的使用介绍