| description |
BREAK (Transact-SQL) |
| title |
BREAK (Transact-SQL) | Microsoft Docs |
| ms.custom |
|
| ms.date |
11/19/2018 |
| ms.prod |
sql |
| ms.prod_service |
database-engine, sql-database, sql-data-warehouse, pdw |
| ms.reviewer |
|
| ms.technology |
t-sql |
| ms.topic |
reference |
| f1_keywords |
|
| dev_langs |
|
| helpviewer_keywords |
exiting innermost loop [SQL Server] |
END keyword |
ignored statements |
BREAK keyword |
|
| ms.assetid |
67c30b8d-3f15-41ad-b9a9-a4ced3b2af9f |
| author |
cawrites |
| ms.author |
chadam |
| monikerRange |
>=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDE sql-asdb-asdbmi-asa-pdw]
BREAK exits the current WHILE loop. If the current WHILE loop is nested inside another, BREAK exits only the current loop, and control is given to the next statement in the outer loop.
BREAK is usually inside an IF statement.
WHILE (1=1)
BEGIN
IF EXISTS (SELECT * FROM ##MyTempTable WHERE EventCode = 'Done')
BEGIN
BREAK; -- 'Done' row has finally been inserted and detected, so end this loop.
END
PRINT N'The other process is not yet done.'; -- Re-confirm the non-done status to the console.
WAITFOR DELAY '00:01:30'; -- Sleep for 90 seconds.
END