黑马程序员技术交流社区
标题:
sql中外键能不能用sql语句创建?
[打印本页]
作者:
刘建法
时间:
2012-4-24 17:26
标题:
sql中外键能不能用sql语句创建?
本帖最后由 刘建法 于 2012-4-26 13:58 编辑
要把各个表关联起来,在创外键的时候都是在表设计器那里创建的, 用sql语句能不能创建呀!具体怎么做?
作者:
骆崇飞
时间:
2012-4-24 18:01
可以的,下面举个例子
首先创建一个T_Student表
create table T_Students
(
stuID int primary key identity(1,1) not null,
stuName nvarchar(20)
)
然后创建学生的成绩(T_Score)表,下面这个表的主键严格来讲,我这里是不对的,但只用作例子解释
create table T_Score
(
sco int primary key not null,
stuID int foreign key references T_Students(stuID)
)
这样就T_Score表创建了一个外键
作者:
王志龙
时间:
2012-4-24 23:07
//当然能了,
//这个表示创建表emploee emp_deptid的外键,把他和Department表中的dept_id列关联起来
alter table employee add constraint fk_employee_department foreign key(emp_deptid) references Department(Dept_id)
作者:
张林春
时间:
2012-4-25 16:04
当然可以。。
foreign key是外键的意思 注意后不要忘了references 关键字
alter table employee
add constraint fk_studet foreign key(SID) references teacher(TSID)
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2