Por favor me pasan un ejemplo de for

09/04/2005 - 20:34 por Novato | Informe spam
Por favor quiero ingresar en la tabla en el ID de producto el codigo
generado por el for



declare
@VarIdProducto int
For I = 18 to 515
SELECT @VarIdProducto= I
insert into parametros (Id_producto,Unidades;PorcentajeMay,PorcentajeMin)
values(@VarIdProducto,0,4,6)
next
 

Leer las respuestas

#1 Gustavo Larriera [MVP]
09/04/2005 - 20:53 | Informe spam
DECLARE @i INT

SET @i = 18
WHILE @i <= 515
BEGIN
aca va la sentencia INSERT
SET @i = @i +1
END


Gustavo Larriera
Uruguay LatAm
Blog: http://sqljunkies.com/weblog/gux/
MVP profile: http://aspnet2.com/mvp.ashx?GustavoLarriera
Este mensaje se proporciona "COMO ESTA" sin garantias y no otorga ningun
derecho / This posting is provided "AS IS" with no warranties, and
confers no rights.



"Novato" wrote in message
news::

Por favor quiero ingresar en la tabla en el ID de producto el codigo
generado por el for



declare
@VarIdProducto int
For I = 18 to 515
SELECT @VarIdProducto= I
insert into parametros (Id_producto,Unidades;PorcentajeMay,PorcentajeMin)
values(@VarIdProducto,0,4,6)
next

Preguntas similares