我创建了这张表:
CREATE TABLE operation_tache_person (
id_tache INT,
id_person INT ,
operations varchar(10),
CONSTRAINT operation_taches_cle_primaire primary key(id_tache,id_person) ,
CONSTRAINT operation_taches_tache_cle_etrange FOREIGN KEY(id_tache) REFERENCES taches(id_tache) ,
CONSTRAINT operation_taches_person_cle_etrange
FOREIGN KEY(id_person) REFERENCES person(id_person)
)
该operations
属性可以采用 3 个值之一:c
,d
或u
我想知道我对这个表进行分区是否operations
会提高性能,如果是,是否有必要将“操作”作为主键来分区它?你能告诉我如何划分它吗?
谢谢你