convert data type in sql
# There are two ways to change data type. By using CAST or ::
# Eg. CAST (column_name AS target_type) OR column_name::target_type
SELECT
CAST (date_occurred AS DATE)
CAST (total_amount AS INTEGER)
CAST (duration AS INTERVAL)
# OR
date_occurred::DATE
total_amount::INTEGER
duration::INTERVAL