把当前最大的 id 做为当前的 id 自增起始数 使用语句: select setval('your_table_id_seq',(select max(id) from 表名)); 如何查看 your_table_id_seq? 使用命令:\d 表名
评论区