I have declared a temp table @table in procedure and while using the "select into" statement with the temp table getting an error. Is there any way to solve this problem?
DECLARE @table TABLE ([name] varchar(50))
SELECT emp_name INTO @table FROM tbl_Employeemaster
Thanks in Advance