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

Daftar Partisi di Postgres 12

Saya tidak tahu di mana Anda menemukan sintaks itu, jelas tidak di manual . Seperti yang Anda lihat di sana partisi dibuat menggunakan create table .. as partition of di Postgres:

Tentukan tabelnya:

CREATE TABLE countrymeasurements
(
  countrycode int NOT NULL,
  countryname character varying(30) NOT NULL,
  languagename character varying (30) NOT NULL,
  daysofoperation character varying(30) NOT NULL,
  salesparts    bigint,
  replaceparts  bigint
)
PARTITION BY LIST(countrycode);

Tentukan partisi:

create table india 
  partition of countrymeasurements 
  for values in (1);
  
create table japan
  partition of countrymeasurements 
  for values in (2);
  
create table china
  partition of countrymeasurements 
  for values in (3);

create table malaysia
  partition of countrymeasurements 
  for values in (4);


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Query SQL untuk mendapatkan daftar hierarki supervisor. karyawan --> supervisor --> supervisor

  2. Izin PostgreSQL terbatas untuk aplikasi web

  3. Postgresql libpq dengan Qt di windows

  4. Versi Postgres tidak kompatibel

  5. 2 Cara Mendapatkan Ukuran Database di PostgreSQL