PostgreSQL
 sql >> Teknologi Basis Data >  >> RDS >> PostgreSQL

Setara dengan HEX() dan UNHEX() MySQL di Postgres?

create function hex(text) returns text language sql immutable strict as $$
  select encode($1::bytea, 'hex')
$$;

create function hex(bigint) returns text language sql immutable strict as $$
  select to_hex($1)
$$;

create function unhex(text) returns text language sql immutable strict as $$
  select encode(decode($1, 'hex'), 'escape')
$$;


select hex('abc'), hex(123), unhex(hex('PostgreSQL'));

Hasil:

╔════════╤═════╤════════════╗
║  hex   │ hex │   unhex    ║
╠════════╪═════╪════════════╣
║ 616263 │ 7b  │ PostgreSQL ║
╚════════╧═════╧════════════╝

Ini adalah PostgreSQL:segala kemungkinan :)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Bagaimana cara memulihkan satu tabel dari cadangan .sql postgresql?

  2. Cara Mengelola Database PostgreSQL Anda Dari ClusterControl CLI

  3. Skenario Kegagalan PostgreSQL Paling Umum

  4. Istilah sintaks SQL untuk 'WHERE (col1, col2) <(val1, val2)'

  5. Masukkan data dalam 3 tabel sekaligus menggunakan Postgres