to_hex()

将整数转换为十六进制的函数

to_hex() 是一个系统函数,用于将整数转换为其十六进制字符串等价物。

to_hex()PostgreSQL 7.3 中添加。

用法

to_hex ( integer ) → text
to_hex ( bigint ) → text

更改历史记录

示例

to_hex() 的基本用法示例

postgres=# SELECT to_hex(255);
 to_hex 
--------
 ff
(1 row)

bigint 转换为十六进制

postgres=# SELECT to_hex(-2401053088876216593);
      to_hex      
------------------
 deadbeefdeadbeef
(1 row)

分类

字符串操作系统函数

另请参阅

encode()to_bin()to_oct()

反馈

提交任何关于 "to_hex()" 的评论、建议或更正 此处