美文网首页
postgresql进制转换

postgresql进制转换

作者: zhiwliu | 来源:发表于2022-02-08 14:46 被阅读0次

    十进制转十六进制和二进制

    mydb=# SELECT to_hex(10);

     to_hex 

    --------

     a

    (1 row)

    mydb=# SELECT 10::bit(4);

     bit  

    ------

     1010

    (1 row)

    十六进制转十进制和二进制

    mydb=# SELECT x'A'::int;

     int4 

    ------

       10

    (1 row)

    mydb=# SELECT x'A'::bit(4);

     bit  

    ------

     1010

    (1 row)

    二进制转十进制和十六进制

    mydb=# SELECT B'1010'::int;

     int4 

    ------

       10

    (1 row)

    mydb=# SELECT to_hex(B'1010'::int);

     to_hex 

    --------

     a

    (1 row)

    相关文章

      网友评论

          本文标题:postgresql进制转换

          本文链接:https://www.haomeiwen.com/subject/oymbkrtx.html