philzhou

导航

2011年10月25日 #

sql server output parameter

摘要: 首先创建一个存储过程: Create PROCEDURE TestOut @str varchar(20) outputASSET @str = @str + ' Phil Zhou'GO 然后测试该存储过程 DECLARE @xxx varchar(20)SET @xxx = 'My Name' EXEC testout @xxx OUTPUT print @xxx 输出: My Name... 阅读全文

posted @ 2011-10-25 20:32 philzhou 阅读(236) 评论(0) 推荐(0) 编辑