📜  如何在 mssql 代码示例中打破 while 循环

📅  最后修改于: 2022-03-11 15:05:35.910000             🧑  作者: Mango

代码示例1
WHILE Boolean_expression
BEGIN
    -- statements
   IF condition
        BREAK;
    -- other statements    
END