I have got a date field - ACTUAL_START - stored as a varchar and managed to change this to a a date field by doing the following:
TO_DATE(ACTUAL_START,'HH24:MI:SS')
Thi sgives me something like this 01/08/2007 08:50:04
However what I need to do is to retrieve the time portion of this field, i.e. 08:50:04
Can anyone advise on how to do this?
Regards,
Tunji
TO_DATE(ACTUAL_START,'HH24:MI:SS')
Thi sgives me something like this 01/08/2007 08:50:04
However what I need to do is to retrieve the time portion of this field, i.e. 08:50:04
Can anyone advise on how to do this?
Regards,
Tunji