truncate postgres code example
Example 1: postgresql truncate cascade restart identity
TRUNCATE bigtable, fattable RESTART IDENTITY;
Example 2: truncate table postgres
TRUNCATE TABLE table_name;
Example 3: truncate table postgres
truncate my_table restart identity
Example 4: postgres clear table
TRUNCATE [ TABLE ] [ ONLY ] name [ * ] [, ... ]
[ RESTART IDENTITY | CONTINUE IDENTITY ] [ CASCADE | RESTRICT ]