Answers for "stored procedure which return a value of one variable"

SQL
3

sql server stored procedure return value to variable

CREATE PROC myproc AS 
BEGIN
     SELECT name FROM SYSOBJECTS
END
go

DECLARE @t TABLE (name varchar(100))
INSERT @t (name)
exec myproc
Posted by: Guest on August-30-2021

Code answers related to "stored procedure which return a value of one variable"

Code answers related to "SQL"

Browse Popular Code Answers by Language