Skip to content
Home » SQL GOTO Statement

SQL GOTO Statement

The SQL GOTO statement is used to alter the flow of execution. When the execution reaches the GOTO statement, it jumps unconditionally to the label specified in the goto statement.




GOTO Statements and labels can be used anywhere within statement block, stored prodcedures, procedure, Query batch.

To using GOTO, you need to create label then you can use GOTO to jump to that label, so the code between GOTO and the label are skipped, and processing continues at the label.

SYNTAX

--sql code
GOTO label
--sql code
label:
--sql code

Lets look at an example using GOTO Statement in SQL.

Here we have a stored procedure that accepts an input number from user and returns whether it is even or odd number using GOTO statement.

CREATE PROC Get_NumberEvenOrOdd
@Number INT
AS

IF @Number % 2 =0
GOTO Even
ELSE
GOTO Odd

Even:
SELECT CAST(@Number as VARCHAR) + ' Number is Even' AS Output

RETURN

Odd:
SELECT CAST(@Number as VARCHAR) + ' Number is Odd' AS Output

RETURN
GO

Lets understand the above stored procedure code, suppose user provides a input value to parameter @number =10, IF condition @Number % 2 =0 validate the number, whether it is Even or Odd.

If the above condition is True, then the SQL Server GOTO statement inside the IF block takes the execution to the Even label, and execute the SQL statements written inside the Even label.

When condition is False, then else block is executed and the SQL Server GOTO statement inside the IF block takes the execution to the Odd label, and execute the SQL statements written inside the Odd label.

Lets see this in practicle, and first we pass one even value to stored procedure and execute it.

 

EXEC Get_NumberEvenOrOdd 10

 

Lets understand, how GOTO statement jumps to label and return the output with the help of below screenshot.

For value 10, IF condition is true so the GOTO statement in this block takes the execution to label Even, and statement written in even label is executed  and returns ’10 Number is Even’

 

 

Lets provide an input value 15 that is Odd number to Stored procedure.

You can see, it returns that this number is Odd, which is correct.

 

 

Lets understand, the flow of GOTO statement for this input value.

For user value 15, IF condition is FALSE so GOTO statement inside the Else block takes the execution to the Odd label, and statement written in Odd label is executed and returns ’15 Number is Odd’

 

 

Also Read..

SQL Server While Loop

SQL Server IF..ELSE

SQL Server WaitFor

SQL Basics TutorialSQL Advance TutorialSSRSInterview Q & A
SQL Create tableSQL Server Stored ProcedureCreate a New SSRS Project List Of SQL Server basics to Advance Level Interview Q & A
SQL ALTER TABLESQL Server MergeCreate a Shared Data Source in SSRSSQL Server Question & Answer Quiz
SQL DropSQL Server PivotCreate a SSRS Tabular Report / Detail Report
..... More.... More....More
Power BI TutorialAzure TutorialPython TutorialSQL Server Tips & Tricks
Download and Install Power BI DesktopCreate an Azure storage accountLearn Python & ML Step by stepEnable Dark theme in SQL Server Management studio
Connect Power BI to SQL ServerUpload files to Azure storage containerSQL Server Template Explorer
Create Report ToolTip Pages in Power BICreate Azure SQL Database ServerDisplaying line numbers in Query Editor Window
....More....More....More




Loading

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from SQL Skull

Subscribe now to keep reading and get access to the full archive.

Continue reading