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