我有一张桌子
documents
(
year int not null,
number int not null,
document_types_id int not null,
...
)
主键是 year + number + document_types_id。
我认为更好的主键是 year + document_types_id + number。有没有办法在不删除和重新创建 PK 的情况下重新排序此组合(不是表中的列、PK 和 FK 组合),因为此 PK 在许多其他表中用作 FK。
谢谢。