mssql select into multiple variables Edit
MSSQL how to select into multiple variables in mssql select statement. Or how to assign values to two or more variables using a single statement
Solution
select @variable1 = col1, @variable2 = col2 from table