PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Wstawianie rekordów autoreferencyjnych w Postgresql

Możesz wybrać last_value z sekwencji, która jest tworzona automatycznie, gdy używasz typu serial:

create table test (
  id serial primary key,
  parent integer not null,
  foreign key (parent) references test(id)
);

insert into test values(default, (select last_value from test_id_seq));
insert into test values(default, (select last_value from test_id_seq));
insert into test values(default, (select last_value from test_id_seq));

select * from test;
 id | parent
----+--------
  1 |      1
  2 |      2
  3 |      3
(3 rows)

I wydaje się, że działa jeszcze prostsze polecenie:

insert into test values(default, lastval());

Chociaż nie wiem, jak to działało, gdy używam wielu sekwencji... Poszukałem tego; lastval() zwraca ostatnią wartość zwróconą lub ustawioną w ostatnim wywołaniu nextval lub setval do dowolnej sekwencji, więc następujące czynności mogą sprawić ci kłopoty:

create table test (
  id serial primary key,
  foo serial not null,
  parent integer not null,
  foreign key (parent) references test(id)
);

select setval('test_foo_seq', 100);

insert into test values(default, default, lastval());
ERROR:  insert or update on table "test" violates foreign key constraint "test_parent_fkey"
DETAIL:  Key (parent)=(101) is not present in table "test".

Jednak poniższe byłyby w porządku:

insert into test values(default, default, currval('test_id_seq'));

select * from test;
 id | foo | parent
----+-----+--------
  2 | 102 |      2
(1 row)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wybierz N wierszy z wartościami mieszanymi

  2. hibernacja nie mogła uzyskać następnej wartości sekwencji

  3. funkcja to_char(number) w postgresie

  4. Nie udało się połączyć serwera AWS-Postgres z aplikacją spring boot z hostingiem heroku

  5. pg gem Trace/BPT trap:błąd 5 w systemie MAC OS X lion