Conversion Functions
CannerFlow will implicitly convert numeric and character values to the correct type if such a conversion is possible. CannerFlow will not convert between character and numeric types. For example, a query that expects a varchar will not automatically convert a bigint value to an equivalent varchar.
When necessary, values can be explicitly cast to a particular type.
Conversion Functions
cast
(value AS type) -> type
Explicitly cast a value as a type. This can be used to cast a varchar to a numeric value type and vice versa.
try_cast
(value AS type) -> type
Like cast
, but returns null if the cast fails.
Formatting
format
(format, args...) -> varchar
Returns a formatted string using the specified format string and arguments:
Miscellaneous
typeof
(expr) -> varchar
Returns the name of the type of the provided expression: