如何在开始日期的时间戳中添加秒数,以便获得估计的结束日期?

发布于 2024-10-22 23:47:26 字数 124 浏览 4 评论 0原文

我有一个带有 start_time 和估计时间(以秒为单位)的任务对象。 start_time 以 MYSQL DATETIME 形式存储在数据库中,估计时间以秒形式存储。我想将秒数添加到 start_time 以获得估计的完成日期。

I have a Task object with a start_time and an estimated time in seconds. The start_time is stored in the database as a MYSQL DATETIME and the estimated time is stored as seconds. I would like to add the seconds to the start_time to get an estimated finish date.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洒一地阳光 2024-10-29 23:47:26

Neville 提供的链接中有很多内容,但稍微切入主题...

my_date_time + INTERVAL xx SECOND

我认为使用 DATE_ADD() 更正确,但据我所知,没有性能差异。

There is a lot in the link Neville gave, but cutting slightly to the chase...

my_date_time + INTERVAL xx SECOND

I think it is more correct to use DATE_ADD(), but as far as I know there is no performance difference.

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