数据库实训题,,

createtableproducttype--产品类别表(pt_idintnotnullidentity(1,1)primarykey,--产品类型编号pt_namev... create table producttype --产品类别表
(
pt_id int not null identity(1,1) primary key, --产品类型编号
pt_name varchar(20) not null unique,--产品类型名称
)

create table client --客户表
(
cl_id char(4) not null primary key,--客户ID
cl_name varchar(20) not null, --客户名称
cl_type char(6) null check (cl_type='经销商' or cl_type='零销商'),--类型
cl_guimo char(2) null check(cl_guimo='大' and cl_guimo='中' and cl_guimo='小'),--规模
cl_tel varchar(15) null, --电话
cl_duanjiao bit null default(0)--是否联系

)
create table product --产品表
(
pr_id char(4) constraint pk_prid primary key,
pr_name varchar(20) constraint ix_prname unique,
)

create table orders --订单表
(
or_id int not null identity(1,1) primary key, --订单ID
cl_id char(4) not null foreign key(????) references ????), --客户ID
pr_id char(4) not null foreign key (????) references ????? --产品ID
or_price money null, --单价
or_umn int null,--数量
or_date datetime null default (getdate()) --下单日期
)
哪位大神帮我看看,产品id和客户id的的外键引用是怎么搞的,一直不行
,就是打问号的地方
展开
 我来答
shayatou10
2014-06-29 · TA获得超过164个赞
知道小有建树答主
回答量:116
采纳率:100%
帮助的人:60.7万
展开全部
cl_id char(4) not null foreign key(cl_id) references client(cl_id), --客户ID
pr_id char(4) not null foreign key (pr_id) references product(pr_id) --产品ID

应该是这样吧,你看看对不对
舒心又清馨的小才俊k
2014-06-29 · TA获得超过322个赞
知道答主
回答量:123
采纳率:0%
帮助的人:50.4万
展开全部
是打算让人给你开发系统吗
追问
不是是作业,外键和主键有点分不清楚
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式