Is there a way to print date in the below format in both oracle and postgresql
2018-05-18’T’13:30:42.000+0000
Is there a way to print date in the below format in both oracle and postgresql
2018-05-18’T’13:30:42.000+0000
SELECT to_char(systimestamp,'YYYY-MM-DD"''T''"HH24:MI:SS.FF3TZHTZM') FROM dual;
returns
2018-05-27'T'02:45:22.152+0200