在SQL中怎么创建一个多对多的表,分析实体,找出关系模式,并定义它们之间的关系
2个回答
展开全部
首先建立两个表 分别对应两个实体
然后建立第三张表作为中间表 将之前建好的两个表的主键在中间表中做联合主键
这样就将两张表的多对多关系联系起来了
我举个例子 一条微博可能属于多个话题 一个话题中也包含多条微博
-------------- 话题表------
create table topic
(
topicid int primary key,
keyword nvarchar2(50) not null,
topictype nvarchar2(50) not null check(topictype in ('生活','情感','娱乐','电影','电视','体坛','财经','科技','文化','媒体沙龙')),
);
-----、微博表——————
create table weibo(
weiboid int primary key,
userID int ,
text nvarchar2(140)not null,
);
---------、话题微博表
create table topicWeibo
(
topicweiboid int primary key,
weiboid int references weibo(weiboid),
topicid int references topic(topicid)
);
然后建立第三张表作为中间表 将之前建好的两个表的主键在中间表中做联合主键
这样就将两张表的多对多关系联系起来了
我举个例子 一条微博可能属于多个话题 一个话题中也包含多条微博
-------------- 话题表------
create table topic
(
topicid int primary key,
keyword nvarchar2(50) not null,
topictype nvarchar2(50) not null check(topictype in ('生活','情感','娱乐','电影','电视','体坛','财经','科技','文化','媒体沙龙')),
);
-----、微博表——————
create table weibo(
weiboid int primary key,
userID int ,
text nvarchar2(140)not null,
);
---------、话题微博表
create table topicWeibo
(
topicweiboid int primary key,
weiboid int references weibo(weiboid),
topicid int references topic(topicid)
);
更多追问追答
追问
CREATE TABLE 产品(产品编号 smallint RRIMARY KEY CLUSTERED,
产品名称 VARCHAR(50)NOT NULL,
规格 REFERENCE
型号 CHAR(5) NOT NULL UNIQUE);
CREATE TABLE 零件(零件编号 CHAR(5),
零件名称 CHAR(20));
CREATE TABLE 产品组成(产品编号 CHAR(5),
零件编号 CHAR(5),
数量 ……)
这个有错误 能不能把这个帮我改正确了 谢谢 刚才你给我发的 我刚开始学 看不太懂
追答
你报的什么错 CLUSTERED这个是多余的, 规格 REFERENCE 型号 CHAR(5) NOT NULL UNIQUE 这一句完全错误
你要建几张怎么样的表?你告诉我 我建好给你
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询