Hi,
I am using oracle database version 11.2.1 and would like to convert a number in minutes to date format HH24:MI:SS
I am using the following syntax but this does not include seconds, returns format HH24:MI
select FLOOR (165.44 / 60) || ':' || TO_CHAR (MOD (165.44, 60), 'FM00')
from dual
Is it possible to add seconds HH24:MI:SS?