PostgreSQL to_hex() 函数使用指南

PostgreSQL to_hex() 函数将指定的数字转换为十六进制表示并返回。

to_hex() 语法

这里是 PostgreSQL to_hex() 函数的语法:

to_hex(number)

参数

number
必需的。 一个整数。

返回值

PostgreSQL to_hex() 函数返回一个指定数字的十六进制表示的字符串。

to_hex() 示例

这个示例演示了如何使用 to_hex() 将数字转为十六进制表示:

SELECT 
    to_hex(9) AS "to_hex(9)",
    to_hex(10) AS "to_hex(10)",
    to_hex(11) AS "to_hex(11)",
    to_hex(12) AS "to_hex(12)",
    to_hex(13) AS "to_hex(13)",
    to_hex(14) AS "to_hex(14)",
    to_hex(15) AS "to_hex(15)",
    to_hex(16) AS "to_hex(16)",
    to_hex(17) AS "to_hex(17)",
    to_hex(123456789) AS "to_hex(123456789)";
-[ RECORD 1 ]-----+--------
to_hex(9)         | 9
to_hex(10)        | a
to_hex(11)        | b
to_hex(12)        | c
to_hex(13)        | d
to_hex(14)        | e
to_hex(15)        | f
to_hex(16)        | 10
to_hex(17)        | 11
to_hex(123456789) | 75bcd15