how to view time format with milliseconds
415196Aug 31 2005 — edited Aug 31 2005i want to view time HHMISS concatenate with millisec in one function.
select sysdate, to_char(sysdate, 'HHMMSShh') HHMMSShh, to_char(sysdate, 'HHMISS') HHMISS, extract(second from localtimestamp) SEC_MILL, round(mod(extract(second from systimestamp),1), 2) MILLI from dual
Any one help me.
atif