“index PostgreSQL RESET AUTO_INCRAMment” Réponses codées

index PostgreSQL RESET AUTO_INCRAMment

-- Change the starting value of the sequence

ALTER SEQUENCE project_id_seq RESTART 3000;

-- Same but dynamic :

SELECT SETVAL('project_id_seq', (SELECT MAX(id) + 1 FROM project));
The Strangest Salamander

Valeur de mise à jour postgresql Auto_increment

ALTER SEQUENCE product_id_seq RESTART WITH 1453
Cybernated Dev

Réponses similaires à “index PostgreSQL RESET AUTO_INCRAMment”

Questions similaires à “index PostgreSQL RESET AUTO_INCRAMment”

Plus de réponses similaires à “index PostgreSQL RESET AUTO_INCRAMment” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code