Answers for "postgres truncate"

SQL
0

restart identity cascade

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
Posted by: Guest on July-14-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language