Get started
Load & manage data
Work with data
Administration
Reference & resources
CLUSTER BY
mask
ROW FILTER
更新しました 2025/02/18
Send us feedback
hex
Applies to: Databricks SQL Databricks Runtime
Converts expr to hexadecimal.
expr
hex(expr)
expr: A BIGINT, BINARY, or STRING expression.
A STRING.
The function returns the hexadecimal representation of the argument.
> SELECT hex(17); 11 > SELECT hex('Spark SQL'); 537061726B2053514C
unhex function