关系表的中间表,查询优化

drop table if exists  "man" ;
create table if not exists "man" (
    name varchar(32) primary key 
);

drop table if exists  "tag" ;
create table if not exists "tag" (
   des varchar(32) primary key 
);

drop table if exists  "man_tag" ;
create table if not exists "man_tag" (
    "man" char(32)  not null REFERENCES "A"("name"),
    "des" char(32)  not null REFERENCES "B"("des")
);

假设有man表和tag表。 两个表数据量都非常巨大,多对多中间表如何优化

阅读 1.8k
1 个回答

你可以弄个id作为主键,不要用其他varchar

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题