如何获取 derby 数据库上 2 个日期时间戳之间的小时差?

发布于 2024-08-22 17:20:58 字数 215 浏览 5 评论 0原文

我有一个关于derby数据库的sql问题:

Select a.name, a.starttime, a.endtime
From a

如何添加到上面的sql语句中,以便我可以获得开始时间和结束时间之间的小时差? (我只知道对于 mysql 有一个 DATEDIFF 函数,但我不确定对于 derby db 应该使用什么函数)

谢谢。

I have a sql question on derby database:

Select a.name, a.starttime, a.endtime
From a

How can I add to the above sql statement such that I can get the difference in hours between the start time and end time? (I only know that for mysql there is a DATEDIFF function, but I am not sure about what function should I use for derby db)

Thanks.

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

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

发布评论

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

评论(1

落花随流水 2024-08-29 17:20:58

在 Derby 中有一个 TIMESTAMPDIFF:

例如:

select {fn timestampdiff(SQL_TSI_FRAC_SECOND, startdate, enddate)} as diff 

In Derby there is a TIMESTAMPDIFF:

for instance:

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