2021
01-08
01-08
postgresql重置序列起始值的操作
我就废话不多说了,大家还是直接看代码吧~--序列重置到1000altersequencesequence_namerestartwith1000--验证SELECTnextval('sequence_name');补充:postgresql重置序列和自增主键1.问题背景数据表中插入了几条测试数据,后又手动删除,导致后面插入数据的时候报主键冲突:ERROR:duplicatekeyvalueviolatesuniqueconstraint"tableName_pkey"DETAIL:Key(id)=(1)alreadyexists.即使采用INSERTIGNORE的方式或者...
继续阅读 >