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
CAST(timestamp_expression AS DATE)
For example, The query is : SELECT CAST(SYSTIMESTAMP AS DATE) FROM dual;
SELECT CAST(SYSTIMESTAMP AS DATE) FROM dual;