30/06/2009, 16:48
|
| | Fecha de Ingreso: noviembre-2006 Ubicación: México
Mensajes: 866
Antigüedad: 18 años, 2 meses Puntos: 8 | |
Respuesta: Sp con Fechas
Código:
CREATE PROCEDURE SP_TBL_CTRL_REG_EVENTO_F
@Evento varchar
@Fechaini datetime,
@Fechafin datetime
AS
IF @FechaIni IS NULL
SET @FechaIni = getdate()
IF @Fechafin IS NULL
SET @Fechafin = getdate()
Select folio, Fecha, Divison, Evento
From tabla_control
where Fecha beetween @Fechaini and @Fechafin
GO
|