PostgreSQL - 将数字字段中的秒转换为 MM:SS 的最简单方法是什么
我有一个带有整数值的字段,这意味着秒数。我想将其显示为 MM:SS,没有小时,因此例如 6000 秒应显示为 100:00。 做到这一点最简单的方法是什么?据我所知, to_char 不能用于此目的。
I have field with an integer value which means number of seconds. I would want to display it as MM:SS, without hours, so for example 6000 seconds should be shown as 100:00.
What's the easiest way to do this? As far as I see, to_char cannot be used for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种解决方法,因为我还没有找到更好的解决方案:
您可以使用一个简单的选择:
这可以包含在一个很好的函数中:
使用示例:
This is a kind of workaround, as I haven't found better solution:
You could use a simple select:
This could be wrapped in a nice function:
Example of usage: