拉拉维尔(Laravel)雄辩的一个月日期的某个领域的汇总?
因此,假设我有一个只有ID,日期和销售的桌子。我想要一个Laravel雄辩的查询,以显示迄今为止该月的累计销售额。例如:
我想要的:
ID | 日期 | 销售 | ACC |
---|---|---|---|
1 | 2020-01-01 | 100 1 | 100 |
2 | 2020-01-02 | 50 | 150 150 |
3 | 2020-01-03 | 200 | 350 350 |
4 | 2020-02-01 | 220 220 | 220 220 |
5 | 2020-02-02 | 300 | 520 |
上表是我想要的雄辩,实际的表没有ACC。
我不想创建一个新列,我只想通过雄辩的查询来显示累积的内容。谢谢你!
So, let's say I have a table with just id, date, and sales. I want a laravel eloquent query that shows the accumulated sales so far for that date for the month. For example:
What I want:
ID | Date | Sales | Acc |
---|---|---|---|
1 | 2020-01-01 | 100 | 100 |
2 | 2020-01-02 | 50 | 150 |
3 | 2020-01-03 | 200 | 350 |
4 | 2020-02-01 | 220 | 220 |
5 | 2020-02-02 | 300 | 520 |
The above table is what I want from Eloquent, the actual table is without Acc.
I don't want to create a new column, I just want to show the accumulated through the eloquent query. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尚不清楚您是否已经有模型,但是您提到要使用Eloquend。假设您有一个称为销售的模型。在您的控制器中:
is not clear if you have a model already, but you mention you want to use eloquend. Let's assume you have a model called Sales. In your controller: