I know this is doable:
select @MyVariable = ColumnName from MyTable where MyId = SomeInteger
Can you do it with multiple outputs? Something like this:
select @MyVariable1, @MyVariable2 = ColumnName1, ColumnName2 from MyTable where MyId = SomeInteger
Thanks!