Answers for "goto in sql query"

SQL
1

SQL GOTO EXAMPLE

DECLARE @Counter int;  
SET @Counter = 1;  
WHILE @Counter < 10  
BEGIN   
    SELECT @Counter  
    SET @Counter = @Counter + 1  
    IF @Counter = 4 GOTO Branch_One --Jumps to the first branch.  
    IF @Counter = 5 GOTO Branch_Two  --This will never execute.  
END  
Branch_One:  
    SELECT 'Jumping To Branch One.'  
    GOTO Branch_Three; --This will prevent Branch_Two from executing.  
Branch_Two:  
    SELECT 'Jumping To Branch Two.'  
Branch_Three:  
    SELECT 'Jumping To Branch Three.';
Posted by: Guest on July-07-2021
0

sql: goto

Define the label:   
label:   
Alter the execution:  
GOTO label
Posted by: Guest on July-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language