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
ff
2147483647
7fffffff
9223372036854775807
7fffffffffffffff
-1
ffffffffffffffff
Transformation job example
SQL
Query result
value
Output
255
ff
Last updated