i was hoping to be able to do something like this:
declare @label varchar
set @label = 'label_1'
goto @label
label_1:
label_2:
of course, sql server gives me an incorrect syntax error... so i was wondering if i can still do this with a slightly different syntax?