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
@TableName VARCHAR(20),
@FieldName VARCHAR(20)
AS
EXEC('SELECT ' + @FieldName+ ' FROM ' + @TableName)
exec MyProc 'TableName', 'FieldName'