与时间火鸟的操作
解决问题。 时间有两种含义:12:20 和 23:55。如何添加出口处的值是 36:15。
或者如何将这些值保留为 dB(时间)时间,除此之外,是否可以添加?
To resolve the issue.
There are two meanings Time: 12:20 and 23:55. How can add the values that-be at the outlet was 36:15.
Or how to keep these values in dB (Time) Time except that, were it possible addition?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Firebird 的数据类型 TIME 只允许范围在 00:00:00 到 24:00:00 之间。
如果要存储任意时间量(例如,以秒为单位),请使用 INTEGER 或 NUMERIC 数据类型。然后根据需要将其转换为时间字符串格式。
Firebird's data type TIME allows range between 00:00:00 and 24:00:00 only.
If you want to store arbitrary amount of time (say, in seconds) use INTEGER or NUMERIC datatype. Then convert it into time string format if needed.
您可以使用 方言 3 中的 TIMESTAMP
这样您可以添加 2 次。
You can use TIMESTAMP in dialect 3
With this you can add 2 times.
我这里有代码将秒转换为整数
i have code here convert seconds in integer