如何获取 derby 数据库上 2 个日期时间戳之间的小时差?
我有一个关于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Derby 中有一个 TIMESTAMPDIFF:
例如:
In Derby there is a TIMESTAMPDIFF:
for instance: