Answers for "postgres reset index count"

SQL
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
0

reset postgres table index to next max value

SELECT SETVAL('some_table_id_seq',MAX(id)+1) FROM some_table
Posted by: Guest on September-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language