13 noviembre 2023

SQL While

DECLARE @counter INT;

SET @counter = 0;

 

WHILE @counter < 10

BEGIN

       PRINT NEWID();

       SET @counter += 1;

END;

GO

 

No hay comentarios: