The Break command used to exit the loop does not specify a stop condition or you want to stop the loop on condition that you specify and execute the statements following the END command of the loop.
Syntax
To use the command to interrupt BREAK control in SQL Server, we use the following syntax:
BREAK;
There are no parameters and arguments in the BREAK statement.
Note:
For example
DECLARE @Number INT = 1;
DECLARE @Total INT = 0;@Number WHILE BEGIN
IF @NUMBER = 5
BREAK;
ELSE
SET @Total = @Total + @Number;
SET @Number = @Number + 1;
ENDPRINT @Total;
GO
In this example using the BREAK statement, the WHILE loop will end when @Number reaches value 5.
Previous article: FOR loop in SQL Server
Next lesson: CONTINUE command in SQL Server
ncG1vNJzZmismaXArq3KnmWcp51kr7OxwKRknKeeqb%2BwuIyipa2doqfCscCMnKampZGjsW61zWaqqqRdqLKzwsSr