PLSQL - 如何减去时间戳类型的时间(hh:mi)
我有两个带有时间戳类型的字段,time_in 和 time_out。
例如:time_out = 02-MAY-11 07.30.00.000000 PM
和time_in = 02-MAY-11 07.57.00.000000 AM
我想从时间戳字段中获取不同的小时数。
如何做到这一点?
I have two fields with timestamps type, time_in and time_out.
For example:time_out = 02-MAY-11 07.30.00.000000 PM
andtime_in = 02-MAY-11 07.57.00.000000 AM
I want to get the different HOURS from that timestamps field.
How to do that,.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您要找的吗? Extract 也适用于间隔(这是两个时间戳之间直接相减所得到的结果)。
Is this what you're looking for? Extract also works on intervals (which is what a direct subtraction between two timestamps gives you).
请参阅 Extract 函数
从上面:
See the Extract function
From the above: