如何使用 eloquent 或 DB 查询查找状态转换所需的平均时间

发布于 2025-01-11 07:23:35 字数 704 浏览 0 评论 0原文

我有一个像这样的表(state_histories)。

实体_类型实体_id状态创建的
发票12020-04-16 06:24:50
发票1索赔2020-04-16 07:24:50
发票22020-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_typeentity_idstatuscreated_at
invoice1New2020-04-16 06:24:50
invoice1Claim2020-04-16 07:24:50
invoice2New2020-04-16 07:34:50
invoice2Hold2020-04-16 07:44:50
invoice1Paid2020-04-16 08:24:50
invoice2Claim2020-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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静待花开 2025-01-18 07:23:35

在回答这个问题之前,最好考虑另一种方法,而不是为发票的新状态创建一个新行,也许可以添加一些列来引用状态更改为声明的时间
您可以获取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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文