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 PROCEDURE myProc
@inparam int,
@outparam1 int OUTPUT,
@outparam2 int OUTPUT
AS
SELECT @outparam1=49*@inparam
SELECT @outparam2=49*@outparam2
DECLARE @q1 integer, @q2 integer
SELECT @q2=4
EXECUTE myProc 100, @q1 OUTPUT, @q2 OUTPUT
SELECT @q1, @q2