“Sequência de redefinição PostGresql” Respostas de código

Sequência de redefinição PostGresql

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

Reset ID Sequence 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

Respostas semelhantes a “Sequência de redefinição PostGresql”

Perguntas semelhantes a “Sequência de redefinição PostGresql”

Procure respostas de código populares por idioma

Procurar outros idiomas de código