当涉及到primary key constraint db时,postgres与primary key sequence之间有什么区别?
primary key constraint
postgres
primary key sequence
发布于 2014-02-17 17:41:21
主键约束将列中的值约束为唯一。
主键序列定义生成主键的新唯一值的方式。
https://stackoverflow.com/questions/21835691
相似问题