又是基础问题,还要请教大家了
if object_id('StudentCopy') is not nulldrop table StudentCopygocreate table StudentCopy(StudentNo nvarchar(50) not null primary key,LoginPwd nvarchar(50) not null,StudentName nvarchar(20) not null,Sex char(2) not null,GradeId int not null,Phone nvarchar(255) not null,Address nchar(255),BornDate datetime null,Email nvarchar(255) null)goinsert into StudentCopy(StudentNo,StudentName,Sex,GradeId,Phone,LoginPwd)values('s1122340','张三','男',1,'0351445325','z');--(1 行受影响)--真不清楚你的是什么问题,也不是触发器的问题,若是,则提示信息不会是这个,你不会是在耍大家吧,呵呵
[解决办法]
我发现你的建表的那个有个*
啊是不是没有保存的缘故