@active
2 つの更新を行うストアド プロシージャがありますが、パラメーターが と等しい場合にのみ最初の更新を行いたいと考えています'Y'
。
alter procedure sp_updateThis
@something varchar(5),
@active char(1)
as begin
-- check to see if active and do the update
update myTable set this=@something
-- run this one regardless
update yourTable set that=@something