Example:
seconds = 272920
My Expected output = 3Days hours:minutes:seconds
I am trying to convert the seconds to day time.
Right now I am currently converted it to time using these query:
SELECT CONVERT(SEC_TO_TIME(Seconds), CHAR) FROM table;
and my output is 75:48:40 -------> Format(hh:mm:ss)
But my expected value is days, hours, mins, secs
.
Any suggestion is a big help, thanks in advance..