Casting converts a value to another format, often used for datetimes. Use `::` (double colon) as a shorthand in [[Postgres]]. ```SQL NOW()::DATE; CAST (NOW() AS DATE) -- equivalent ```