postgresql extract from timestamp in table code example
Example 1: postgres extract date from timestamp
SELECT DATE(column_name) FROM table_name;
Example 2: postgres extract date from timestamp
SELECT DATE(SUBSTRING('2018-07-25 10:30:30' FROM 1 FOR 10));