create procedure myproc
as
begin
declare @p1 varchar(100)
declare @p2 int
select @p2=count(*) from table1 --第一种赋值方式
set @p1='第二种赋值方式'
insert table2 (col1,col2) values(@p1,@p2) --插入方式
update table3 set col3=@p2,@col4=@p1 where id=5 --更新/update方法
end
温馨提示:内容为网友见解,仅供参考