I have a table
documents
(
year int not null,
number int not null,
document_types_id int not null,
...
)
The primary key is year + number + document_types_id.
I think that a better primary key would be year + document_types_id + number. Is there a way to reorder this composition (not columns in table, PK and FK combination) without deleting and recreation of PK, because this PK is used as a FK in many other tables.
Thanks.