Declare @T_variable table(name varchar(200))
SET @T_variable =(SELECT au_lname FROM Testing)
Error Message. Msg 137, Level 16, State 1, Line 2 Must declare the scalar variable "@T_variable".
Note :- select statement result will give multiple rows.
I try to capture the select result in table variable.But i failed. Is there any way to capture the select result to Table variable Dynamically.
Thanks in advance.