Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE proc usp_aProc1
(
@po_Outputparam int output
)
as
Set @po_Outputparam =11 --change this to be type and value you require
create proc usp_aProc2
as
declare @returnValue int
--call the first procedure with a parameter returned containing the value required
exec usp_aProc1 @po_Outputparam = @returnValue out
select @returnValue
create function ufn_aTest()
returns table
as
return select [Name] from sysobjects where xtype = 'U'
CREATE procedure usp_aProc
as
select * from dbo.ufn_aTest()