I'm having a data column named test_duration bigint(12). I'm storing time in seconds into the database. Now when I fetch record from the table I want the time converted into HH:MM:SS format. How should I achieve this? Thanks in advance.
我有一个名为test_duration bigint(12)的数据列。我将时间以秒为单位存储到数据库中。现在,当我从表中获取记录时,我希望将时间转换为HH:MM:SS格式。我该怎么做到这一点?提前致谢。
3 个解决方案
#1
27
You can use MySQL function SEC_TO_TIME().
您可以使用MySQL函数SEC_TO_TIME()。
Example:
例:
SELECT SEC_TO_TIME(2378);
Output is:
输出是:
00:39:38
So in your case:
所以在你的情况下:
SELECT SEC_TO_TIME(test_duration) as `Time` FORM YOUR_TABLE;
#2
2
Do you store the time in Unixtime (Unix seconds?). If so, use:
你是否在Unixtime中存储时间(Unix秒?)。如果是这样,请使用:
FROM_UNIXTIME(unix_timestamp, '%h:%i:%s')
#3
0
There is a MYSQL function that transform seconds to the format "HH:MM:SS":
有一个MYSQL函数可以将秒转换为“HH:MM:SS”格式:
SEC_TO_TIME(seconds)
Example:
例:
SELECT SEC_TO_TIME(3661);
will output:
将输出:
01:01:01
1时01分01秒
Regards
问候
#1
27
You can use MySQL function SEC_TO_TIME().
您可以使用MySQL函数SEC_TO_TIME()。
Example:
例:
SELECT SEC_TO_TIME(2378);
Output is:
输出是:
00:39:38
So in your case:
所以在你的情况下:
SELECT SEC_TO_TIME(test_duration) as `Time` FORM YOUR_TABLE;
#2
2
Do you store the time in Unixtime (Unix seconds?). If so, use:
你是否在Unixtime中存储时间(Unix秒?)。如果是这样,请使用:
FROM_UNIXTIME(unix_timestamp, '%h:%i:%s')
#3
0
There is a MYSQL function that transform seconds to the format "HH:MM:SS":
有一个MYSQL函数可以将秒转换为“HH:MM:SS”格式:
SEC_TO_TIME(seconds)
Example:
例:
SELECT SEC_TO_TIME(3661);
will output:
将输出:
01:01:01
1时01分01秒
Regards
问候