Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/09/2006, 10:19
Avatar de Andres95
Andres95
Colaborador
 
Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años, 1 mes
Puntos: 38
Código:
Declare @FechaInicial datetime
       ,@FechaFinal   datetime

Set @FechaInicial = getdate()
Set @FechaFinal = dateadd(dd, 20, @FechaInicial)

Declare @Dias_Enviar table (valor smalldatetime)

while @FechaInicial < @FechaFinal
Begin
   Insert into @Dias_Enviar values (@FechaInicial)
   Set @FechaInicial = dateadd(dd, 1, @FechaInicial)
End

Select * from @Dias_Enviar