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 myproc
@input1 int,
@input2 varchar(20),
@tablevar table (col1 int, col2 varchar(10)) OUTPUT
AS
...
DECLARE @t1 table (col1 int, col2 varchar(10))
EXEC myproc 123, 'char data', @t1 OUTPUT