Type-Casting

Type Casting in Postgress

You can using :: to cast something as a type in Postgres

Example: '2022-04-01'::date will make the string a date type.

#Postgres