“Secuencia de reinicio de PostgreSQL” Código de respuesta

Secuencia de reinicio de PostgreSQL

ALTER SEQUENCE <tablename>_<id>_seq RESTART WITH 1
Outrageous Oyster

Restablecer la secuencia de identificación 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

Respuestas similares a “Secuencia de reinicio de PostgreSQL”

Preguntas similares a “Secuencia de reinicio de PostgreSQL”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código