psql -d appdb -c "TRUNCATE TABLE users RESTART IDENTITY;"

Category: Databases & SQL

psql -d appdb -c "TRUNCATE TABLE users RESTART IDENTITY;"

Empty a table and reset its sequence

Empties the table instantly and, with RESTART IDENTITY, resets its serial sequence to 1. TRUNCATE is not undoable once committed and fires no per-row triggers. Use DELETE when you need fine-grained control.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.