存诸过程 带输出参数
代码
if object_id('test') is not null drop proc test
go
create proc test
@out bit output
as
set @out='true';
declare @mes bit
exec test @mes output
select @mes