SQL Server 学习 变量
1 declare @id int //声明一个int型变量
2 declare @txt nvchar(max);@txt2 nvchar(ma'x) //声明2个nvchar变量 2 set @id=(select id from tclass where classid= 1);//设置变量值,tclass 为任意表,classid 为表中任一字段 3 if(@studentid is not null)//如果值不为空,则执行插入语句,向表tstudent插入数据 4 INSERT INTO tstudent (studentid,phoneNo)VALUES (@studentid,@phoneNo);

浙公网安备 33010602011771号