建立关联是通过外键引用实现的 例如建立一个学生表和班级表的关联,可以如下: create table class ( classid char(4) primary key not null, classname varchar(10) not null ) go create table student ( stuid char(6) primary key not null, sname varchar(10) not null, classid char(4) constraint fk_classid foreign key references class(classid) ) 嫌麻烦的话也可以使用SQL SERVER管理工具中的数据库关系图功能,只需要在关联的表间字段拖拽鼠标就可以了.