Gebruik de TRUNCATE
SQL-opdracht.
Voor een enkele tabel is de syntaxis als volgt:
TRUNCATE TABLE table_name RESTART IDENTITY;
Voor meerdere tafels:
TRUNCATE TABLE table_foo, table_bar RESTART IDENTITY;
Wat het doet:
Details hier:TRUNCATE @ postgresql.org