Apache Tajo - to_hex(x)

现在让我们使用以下查询检查 to_hex(x) 函数。

查询

default> select to_hex(11) as hex_conversion;

上述查询将生成以下结果。

hex_conversion 
------------------------------- 
b 

查询返回整数11的十六进制值,值为b。 同样,您可以尝试其他值。

apache_tajo_math_functions.html