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

Konversikan postgresql hstore ke array php

Saya yakin sintaksnya akan seperti ini:

$pdo = new PDO( /*connection string*/ );
// h is the hstore column.
$stmt = $pdo->query( "SELECT (each(h)).key, (each(h)).value FROM <table name>" );
$output = array();
foreach( $stmt->fetchAll( PDO::FETCH_NUM ) as $row )
{
   // $row[ 0 ] is the key, $row[ 1 ] is the value.
   $output[ $row[ 0 ] ] = $row[ 1 ];
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Oracle ke PostgreSQL — Kursor dan pohon

  2. Memulai Dengan Postgres 13 di Ubuntu 20.04

  3. Fungsi membutuhkan waktu lama untuk dijalankan untuk sejumlah besar catatan

  4. Vertx JDBC client queryWithParams - bagaimana cara menambahkan daftar?

  5. sambungkan ke server postgres di mesin komputasi google