📜  重置 id 序列 postgres - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:54.958000             🧑  作者: Mango

代码示例1
alter sequence _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;