I want to extract just the date part from a timestamp in PostgreSQL.
I need it to be a postgresql DATE type so I can insert it into another table that e
DATE
In postgres simply : TO_CHAR(timestamp_column, 'DD/MM/YYYY') as submission_date