How can we convert timestamp to date?
The table has a field, start_ts which is of the timestamp format:
start_ts
timestamp
\'05/13/2016 4:58:1
You can try the simple one
select to_date('2020-07-08T15:30:42Z','yyyy-mm-dd"T"hh24:mi:ss"Z"') from dual;