大家好,我是小房,我来为大家解答以上问题。sql外键约束,外键约束很多人还不知道,现在让我们一起来看看吧!
sql server中建立外键约束有3中方式:
1.Enterprise Manager中,Tables,Design Table,设置Table的properties,
可以建立constraint, reference key;
2.Enterprise Manager中,Diagrams, new Diagrams,建立两个表的关系。
3.直接用transact sql语句。
下面讲解一下用SQL添加外键约束的实例:
一个SQL创建外键的例子:
/**//*建库,名为student_info*/
create database student_info
/**//*使用student_info*/
use student_info
go
/**//*建student表,其中s_id为主键*/
create table student
(
s_id int identity(1,1) primary key,
s_name varchar(20) not null,
s_age int
)
go
/**//*建test表,其中test_no为主键*/
create table test
(
test_no int identity(1,1) primary key,
test_name varchar(30),
nax_marks int not null default(0),
min_marks int not null default(0)
)
go
/**//*建marks表,其中s_id和test_no为外建,分别映射student表中的s_id和test表中的test_no*/
create table marks
(
s_id int not null,
test_no int not null,
marks int not null default(0),
primary key(s_id,test_no),
foreign key(s_id) references student(s_id),
foreign key(test_no) references test(test_no)
)
go
参考资料: http://www.studyofnet.com/news/93.html
希望以上的回答能够帮到你!
本文到此讲解完毕了,希望对大家有帮助。