Answers for "how to use table variable in stored procedure"

SQL
1

create table variable in sql stored procedure

DECLARE @table_variable_name TABLE (
    Number int IDENTITY(1,1) ,
	Id int not null,
	[Name] nvarchar(200) NULL,
	Amount decimal(38,2) NULL
);
Posted by: Guest on February-12-2021

Code answers related to "how to use table variable in stored procedure"

Code answers related to "SQL"

Browse Popular Code Answers by Language