作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个数组$shop_ids
,所以我想遍历并将这些id 添加到SQL 语句的子查询中。 SQL子查询的数量应该等于id的数量。
我希望有这样的查询,但显然 @foreach
不起作用,只是成为 SQL 查询的一部分:
DB::select('select
pr.product_name,
pr.brand,
coalesce(pr.weight, pr.volume) wv,
sli.quantity
{{@foreach ($shop_ids as $id)
,{{(select
p.price
from prices p
inner join (
select p1.product_id id, max(p1.created_at) maxed_date
from prices p1
group by p1.product_id, p1.shop_id) grouped on grouped.maxed_date=p.created_at
join shop_names s on s.id=p.shop_id
where p.product_id=sli.product_id
and s.id=$id)}}}}
from shopping_list_items sli
join products pr on pr.id=sli.product_id
where sli.shopping_list_id= :slid
order by 5 asc', ['slid'=>$this->id])
最佳答案
你可以这样做作为例子 -
$ids_query = '';
// generate the queries in loop
foreach ($shop_ids as $id) {
$ids_query .= ", (select ..... where .. and s.id=$id)";
}
// use in the main query
DB::select("select
...,
sli.quantity
$ids_query
from shopping_list_items sli
...
order by 5 asc", ['slid'=>$this->id]);
关于php - 如何在 Laravel 中将 @foreach 添加到 SQL 原始语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39424588/
我是一名优秀的程序员,十分优秀!