When delete row in postgres doesn't decrement

2019-08-28 00:24发布

This question already has an answer here:

i'm new to postgres. if in sqlserver we have a table with auto-increment, and 10 rows... and the last row have id = 10. when you delete the last row, the next you insert will get the id = 10 too... sure?

but in postgres, using bigserial as pk, when i delete the row with the max Id, and insert a new row, it keeps incrementing more and more the pk number..

this is right?

1条回答
太酷不给撩
2楼-- · 2019-08-28 00:41

That's right. Read the manual about sequences.

bigserial and serial are just notational convenience for creating a bigint / integer column with the default set to nextval() from a connected sequence.

And it needs to be that way for safe concurrent use.

查看更多
登录 后发表回答