[求助]match子句
create table 业务员信息
(业务员编号 int not null primary key,
业务员姓名 nvarchar(20) not null
)
create table 顾客信息
(
顾客编号 int not null primary key,
顾客姓名 nvarchar(20) not null,
所属业务员编号 int not null,
constraint 外键约束
foreign key (所属业务员编号)
references 业务员信息(业务员编号)
match full
)
服务器: 消息 170,级别 15,状态 1,行 13
第 13 行: 'match' 附近有语法错误。
我想问下错在那里啊?