Ver Mensaje Individual
  #11 (permalink)  
Antiguo 09/12/2005, 14:35
Avatar de Mithrandir
Mithrandir
Colaborador
 
Fecha de Ingreso: abril-2003
Mensajes: 12.106
Antigüedad: 21 años, 8 meses
Puntos: 25
Creo que entonces va más por este lado:
Código:
DECLARE @unahora NCHAR(8), @otrahora NCHAR(8)
SET @unahora = ' 06:55:00'
SET @otrahora = ' 20:15:00'

select *
from tabla
where fechaproceso between (CONVERT(NCHAR(10), GETDATE(), 120) + @unahora)
	and (CONVERT(NCHAR(10), GETDATE(), 120) + @otrahora)
__________________
"El hombre, en su orgullo, creó a Dios a su imagen y semejanza."
Friedrich Nietzsche