“SQL Server para bucle” Código de respuesta

SQL Server para bucle

DECLARE @cnt INT = 0;

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

Sintaxis de For-Loop en 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

Respuestas similares a “SQL Server para bucle”

Preguntas similares a “SQL Server para bucle”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código