PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Listar particionamento no Postgres 12


Não sei onde você encontrou essa sintaxe, obviamente não no no manual . Como você pode ver as partições são criadas usando create table .. as partition of no Postgres:

Defina a tabela:
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);

Defina as partições:
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);