DATE to TIMESTAMP with TIMEZONE
Hi Team,
How can we convert DATE to TIMESTAMP WITH TIMEZONE.
For Example I have column data like "23-MAY-19' but i need to convert this to '2019-05-23 00:00:00 UTC'
I tried below query
SELECT TO_TIMESTAMP(TO_CHAR(COLUMN,'YYYY-MM-DD HH24:MI:SS'),'YYYY-MM-DD HH24:MI:SS') as COLUMN FROM TABLE
output im getting like '23-MAY-19 12.00.00.000000000 AM'
Data type should be in TIMESTAMP only
Could you please help with the query
Thanks
Arjun