Answers for "postgres sequence has reset"

CSS
3

postgresql reset sequence

ALTER SEQUENCE <tablename>_<id>_seq RESTART WITH 1
Posted by: Guest on March-30-2021
1

reset id sequence postgres

alter sequence <tableName>_id_seq restart with 1;
For an instance, we have a table named "groups" and we need to reset the id sequence with 1. 
alter sequence groups_id_seq restart with 1;
Posted by: Guest on July-06-2020

Browse Popular Code Answers by Language