DECLARE @condition1 bit = 1; -- Go to the section of code labeled "ExecB" IF (@condition1 = 1) GOTO ExecB; ExecA: print 'A - Skipped' ExecB: print 'B - Executed'