“SQL Server für Schleife” Code-Antworten

SQL Server für Schleife

DECLARE @cnt INT = 0;

WHILE @cnt < cnt_total
BEGIN
   {...statements...}
   SET @cnt = @cnt + 1;
END;
Different Dunlin

Syntax von For-Loop in SQL Server

--There is no for-loop, only the while-loop:

DECLARE @i int = 0

WHILE @i < 20
BEGIN
    SET @i = @i + 1
    /* do some work */
END
Aamir Farooq

Ähnliche Antworten wie “SQL Server für Schleife”

Fragen ähnlich wie “SQL Server für Schleife”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen