SQL GOTO Statement

The SQL Server GOTO statement is used to alter the flow of a program. When the execution reaches the SQL GOTO statement, it will jump unconditionally to the label specified in it. The syntax of the SQL Server GOTO Statement is GOTO label …….. …….. label: statements The label specified after the goto statement is … Read more