PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como reiniciar a contagem de id em uma tabela no PostgreSQL após excluir alguns dados anteriores?


Se você truncar a tabela, poderá usar a cláusula RESTART IDENTITY no final.

Exemplo:

TRUNCATE TABLE foo RESTART IDENTITY;

TRUNCAR DOCUMENTAÇÃO