Edwin Bermejo
Edwin Bermejo

Reputation: 442

TIME_TO_SEC ? SEC_TO_TIME

Im using mySQL

enter image description here

i have a calculation which return the value of totalUTinMinutes column in minutes and i want it to convert back into hours, column "T" but i got that result instead of 08:09:[some secs here].

any suggestion or solution. Thank you so much.

Upvotes: 0

Views: 289

Answers (1)

Ajay
Ajay

Reputation: 774

select sec_to_time(489.73*60);

output

08:09:43.80

Upvotes: 2

Related Questions