Answers for "how to break a while loop in mssql"

SQL
0

how to break a while loop in mssql

WHILE Boolean_expression
BEGIN
    -- statements
   IF condition
        BREAK;
    -- other statements    
END
Posted by: Guest on November-17-2020

Code answers related to "how to break a while loop in mssql"

Code answers related to "SQL"

Browse Popular Code Answers by Language