“Postgres resetować identyfikator” Kod odpowiedzi

Resetuj sekwencję identyfikatora postgres

alter sequence <tableName>_id_seq restart with 1;
For an instance, we have a table named "groups" and we need to reset the id sequence with 1. 
alter sequence groups_id_seq restart with 1;
Shy Skipper

aktualizacja Postgresql Auto_increment Wartość

ALTER SEQUENCE product_id_seq RESTART WITH 1453
Cybernated Dev

Postgres resetować identyfikator

ALTER SEQUENCE inv.inventory_item_status_inventory_item_status_id_seq RESTART WITH 6
Mahmoud Nasr

Odpowiedzi podobne do “Postgres resetować identyfikator”

Pytania podobne do “Postgres resetować identyfikator”

Więcej pokrewnych odpowiedzi na “Postgres resetować identyfikator” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu