如何使用 eloquent 或 DB 查询查找状态转换所需的平均时间
我有一个像这样的表(state_histories)。
实体_类型 | 实体_id | 状态 | 创建的 |
---|---|---|---|
发票 | 1 | 新 | 2020-04-16 06:24:50 |
发票 | 1 | 索赔 | 2020-04-16 07:24:50 |
发票 | 2 | 新 | 2020-04-16 07:34:50 |
发票 | 2 | 保留 | 2020-04- 16 07:44:50 |
发票 | 1 | 已付款 | 2020-04-16 08:24:50 |
发票 | 2 | 索赔 | 2020-04-16 09:34:50 |
我想使用 Eloquent 或 DB 查询查找从 NEW 状态到 CLAIM 状态的运输发票的平均时间。
对于上面的输出应该是 90 分钟。
I have a table(state_histories) like this.
entity_type | entity_id | status | created_at |
---|---|---|---|
invoice | 1 | New | 2020-04-16 06:24:50 |
invoice | 1 | Claim | 2020-04-16 07:24:50 |
invoice | 2 | New | 2020-04-16 07:34:50 |
invoice | 2 | Hold | 2020-04-16 07:44:50 |
invoice | 1 | Paid | 2020-04-16 08:24:50 |
invoice | 2 | Claim | 2020-04-16 09:34:50 |
I want to find the average time taken transit invoice from NEW status to CLAIM status using Eloquent or DB query.
For the above output should be 90 mins.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在回答这个问题之前,最好考虑另一种方法,而不是为发票的新状态创建一个新行,也许可以添加一些列来引用状态更改为声明的时间
您可以获取created_at并分配给Dayname或Carbon
在使用 createFromFormat 分配它之后,在 Carbon 中,这样您就可以为 new 执行此操作并声明
然后有一个名为 diffInSeconds 的方法,您可以调用一分钟来获取一个实体的差异。对所有实体执行此操作,最后将它们添加到不同实体的数量上
Before getting into the answer it's better to think of another way than creating a new row for a new status for an invoice maybe add some columns to refer time for status changed to claim with that being said
you can get the created_at and assign to either with Dayname or Carbon
in Carbon after assign it using createFromFormat so you do it for new and claim
and then there is a method called diffInSeconds you can call for a minute to get the difference for one entity. do it for all of the entities and in the end get the addition of them on the number of different entitie