Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Applies to:
Databricks SQL
Databricks Runtime
Casts the value expr to the target data type type. This operator is a synonym for cast function.
Syntax
expr :: type
Arguments
expr: Any castable expression.
Returns
The result is type type.
This operator raises the same errors as cast function. Use ?:: (question double colon sign) operator to return NULL on error instead.
Common error conditions
Examples
> SELECT '20'::INTEGER;
20
> SELECT typeof(NULL::STRING);
string
> SELECT 'abc'::INT;
Error: CAST_INVALID_INPUT