EasyBasic SELECT
Cast data types using :: syntax
The query
SQL
SELECT
'100'::INTEGER AS string_to_int,
CURRENT_DATE::TEXT AS date_to_string,
'2024-01-01'::DATE AS string_to_date;Note
“The :: operator is PostgreSQL-specific syntax for casting. It is concise and widely used.