sybase数据库如何给表添加主键和外键?
2个回答
展开全部
create table tablename(
id number PRIMARY KEY,
name varchar2(25) REFERENCES tablename2.column
)
id number PRIMARY KEY,
name varchar2(25) REFERENCES tablename2.column
)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
alter table SOD_DET
add constraint PK_SOD_DET primary key (SOD_COMP, SOD_NBR, SOD_LINE)
using index
tablespace OLS_D
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);
add constraint PK_SOD_DET primary key (SOD_COMP, SOD_NBR, SOD_LINE)
using index
tablespace OLS_D
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
next 1M
minextents 1
maxextents unlimited
);
追问
这个是ORACLE的执行语句,在sybase数据库替换对应表以及字段后尝试执行了,无法执行成功,老报错:Sybase Database Error: Incorrect syntax near the keyword 'using'.
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询