如何在 SQLite 中将秒转换为 HH:MM:SS 格式?
如何在 SQLite 中将秒转换为 HH:MM:SS 格式?
How would you convert secs to HH:MM:SS format in SQLite?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 SQLite 中将秒转换为 HH:MM:SS 格式?
How would you convert secs to HH:MM:SS format in SQLite?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
试试这个:
Try this one:
如果你的秒数超过24小时,则需要自己计算。例如,对于 100123 秒,向下舍入为分钟:
time
或strftime
函数显然会将每 24 小时转换为另一天。因此,下面显示 3 小时(第二天的时间):要获得完整的 27 小时,您可以单独计算小时,然后使用
strftime
计算分钟和秒:If your seconds are more than 24 hours, you need to calculate it yourself. For example, with 100123 seconds, rounding down to minutes:
The
time
orstrftime
functions will obviously convert every 24-hours to another day. So the following shows 3 hours (the time on the next day):To get the full 27 hours, you can calculate the hours separately, and then use
strftime
for the minutes and seconds:好吧,我会做这样的事情,但我得到了加 12 个小时......
Well, i would do something like this, but i'm getting hours plus 12...