In DB I have TIMESTAMP datatype like 17/06/21 12:33:47,879000000 and I would like to select in format 2017-06-21T12:33:47.879
Edit:
I tried to_char(MODIFIED_TIME,'YYYY-MM-DD HH:MI:SS:FF') but getting
2010-11-12 11:47:50:294000. How can I add this 'T' and cut these '0' at the end of milliseconds?