存储过程中 ,如何先select出一个结果, 再insert或update到另一个表中?

比如,先 select count(*) from table1 得到一个值,再把这个值 更新到另一个表中?应该怎么写?

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
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答