declare @studentid int //声明一个int型变量 );//设置变量值,tclass 为任意表,classid 为表中任一字段 if(@studentid is not null)//如果值不为空,则执行插入语句,向表tstudent插入数据 INSERT INTO tstudent (studentid,phoneNo)VALUES (@studentid,@phoneNo);…
有时候动态sql需要进行变量的赋值,这个时候就需要调用系统的存储过程sp_executesql了.使用中还是有些注意事项,代码如下: --字符型字段需声明为NVARCHAR类型 ),) --动态SQL拼接 SET @STRSQL='SELECT @VALUE_STR=ISNULL(VALUE_STR,'''') FROM [Mast'+'ADMIN'+'@Prop_Fld] WHERE FORM_NAME=''INVHAFORM'' AND PROP_NAME=''PEROUTQTY''' --…
在sql添加的声明变量. declare @local_variable data_type 你需要指定一个变量声明的类型, 能够使用set和select对变量进行赋值, 在sql语句中就能够使用@local_variable来调用变量 声明中能够提供值.否则声明之后全部变量将初始化为NULL. 比如:declare @id int declare @id int = 3 set @id=2 select id select @id = column_id from table where co…