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 use:
select to_date(to_char(date_field,'dd/mm/yyyy')) from table