“PSQL truncado” Código de respuesta

reiniciar la cascada de identidad

TRUNCATE <table_name> RESTART IDENTITY CASCADE;
--RESTART will reset the identity sequence
--CASCADE all tables that have a foreign key reference to 
--table_name will be truncated as well
The Nihad

truncate Table Postgres

truncate my_table restart identity
Unsightly Unicorn

PSQL truncado

TRUNCATE [ TABLE ] [ ONLY ] name [ * ] [, ... ]
    [ RESTART IDENTITY | CONTINUE IDENTITY ] [ CASCADE | RESTRICT ]
Colorful Centipede

Respuestas similares a “PSQL truncado”

Preguntas similares a “PSQL truncado”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código