I have a string '2020-10-12T13:55:28+03:00', where the "t" character separates date from time. How to convert in into timestamp with time zone? I tried:
SELECT TO_TIMESTAMP_TZ('2020-10-12T13:55:28+03:00','YYYY-MM-DDTHH24:MI:SSTZH:TZM')
FROM DUAL;
But it doesn't work. I can use similar expression without "t":
SELECT TO_TIMESTAMP_TZ('2020-10-1213:55:28+03:00','YYYY-MM-DDHH24:MI:SSTZH:TZM')
FROM DUAL;
But I need convert string with the symbol "t".