gpt4 book ai didi

mysql - 将秒转换为天、小时、分钟、秒 (MySQL)

转载 作者:可可西里 更新时间:2023-11-01 06:39:44 25 4
gpt4 key购买 nike

例子:

seconds ="1015557";

结果应该是:

11days 18h:05m:57s

如何在 MySQL 中执行此操作?

最佳答案

select concat(
format(floor(s / @day),0),
'days ',
time_format(sec_to_time(s % @day),'%Hh:%im:%ss')
) formatted_date
from (select 1015557 s) t, (select @day = 3600 * 24);

产生:

+--------------------+                                                                                                                               
| days |
+--------------------+
| 11days 18h:05m:57s |
+--------------------+

关于mysql - 将秒转换为天、小时、分钟、秒 (MySQL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41330789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com