可以的,下面举个例子
首先创建一个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表创建了一个外键
|