EasyBasic SELECT
Cast data types using CAST() standard
The query
SQL
SELECT
CAST('100' AS INTEGER),
CAST(salary AS VARCHAR)
FROM employees;Note
“CAST() is ANSI SQL standard. Does exactly the same thing as :: but is cross-database compatible.
SELECT
CAST('100' AS INTEGER),
CAST(salary AS VARCHAR)
FROM employees;Note
“CAST() is ANSI SQL standard. Does exactly the same thing as :: but is cross-database compatible.