DECIMAL_TO_HEX
Converts a signed 64-bit integer to its hexadecimal string representation
Syntax
Arguments
Name | Type | Description | Default Value |
---|---|---|---|
value | numeric | The number to convert |
Returns
Returns a string
value.
Examples
value | Output |
---|---|
255 |
|
2147483647 |
|
9223372036854775807 |
|
-1 |
|
Transformation job example
SQL
Query result
value | Output |
---|---|
255 |
|
Last updated