34,838
社区成员




ALTER PROCEDURE [dbo].[st_dele_whole_sales]
@id int,
@execute int output
AS
BEGIN
begin try
begin transaction
update tb_sales set active='L' where id=@id
set @execute=1
commit transaction
end try
begin catch
set @execute=0
rollback transaction
end catch
END