Laravel - named subquery using Query Builder(Laravel - 使用查询生成器命名子查询)
问题描述
在 MySQL 子查询 文档中有一个子查询示例:
In MySQL subqueries documentation there's an exmaple of subquery:
SELECT ... FROM (subquery) [AS] name ...
这是我要转换的原始查询:
Here's the raw query which I want to transform:
select SUBQUERY_NAME.* from (select id, name from items) AS SUBQUERY_NAME
在 Laravel Query Builder 中有什么方法可以在不使用 DB::raw()
的情况下做到这一点?
Is there any way to do this in Laravel Query Builder without using DB::raw()
?
推荐答案
不幸的是没有.查询构建器有其局限性,更复杂的查询超出了它的范围,这就是 DB::raw()
存在的原因.但是,如果你想让它更优雅一点并使用查询生成器生成子查询,你可以这样做:
Unfortunatelly no. The Query Builder has its limitations and more complex queries are outside its scope, that's why DB::raw()
is there. But, if you want to make it a little more elegant and generate the subquery using the Query Builder, you could do something like this this:
$subquery = DB::table('items')->select('id', 'name')->toSql();
DB::table(DB::raw($subquery . ' as subquery_name'))->select('subquery_name.*');
这篇关于Laravel - 使用查询生成器命名子查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel - 使用查询生成器命名子查询
- PHP Count 布尔数组中真值的数量 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Laravel 仓库 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01