gpt4 book ai didi

php - laravel 4.2 中的子查询

转载 作者:行者123 更新时间:2023-11-28 23:56:18 24 4
gpt4 key购买 nike

我有下面的 mysql 查询要在 laravel 中运行,但我无法弄清楚我应该如何实现它。

这里是 MYSQL 查询。

SELECT temp.*,count(temp.respondent_id) FROM (SELECT * FROM `responses` GROUP BY respondent_id) as temp GROUP BY DAY(`temp`.`created_at`)

我得到了预期的结果。请帮帮我。提前致谢。

最佳答案

嘿,我有解决方案。

作为stachu在评论中给出链接“Solution 1”。

&另一种方式如下

$data = \DB::select(\DB::raw('SELECT count(temp.respondent_id) as respondent, DATE(temp.created_at) as date FROM (SELECT * FROM `responses` GROUP BY respondent_id) as temp GROUP BY DAY(`temp`.`created_at`)'));

希望这对您有所帮助。

关于php - laravel 4.2 中的子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31585392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com