postgres just the date from timestamp code example
Example 1: postgres extract date from timestamp
SELECT '2018-07-25 10:30:30'::TIMESTAMP::DATE;
Example 2: postgres extract date from timestamp
SELECT DATE(SUBSTRING('2018-07-25 10:30:30' FROM 1 FOR 10));