So, I\'m writing this Stored Proc and I really suck at SQL.
My Question to you guys is:
Can I select an entire row and store it in a variable?
I k
You could create a table variable that matches your table schema and store the single row in it:
declare @myrow table(field0 int,field1 varchar(255)) insert into @myrow select field0,field1 from mytable where field0=1