Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/01/2005, 11:37
Avatar de cableh
cableh
 
Fecha de Ingreso: diciembre-2004
Mensajes: 54
Antigüedad: 20 años
Puntos: 0
Te mando un procedimiento en ms sql server por si te sirve:
(suponiendo que sólo hay un registro por día)

CREATE PROCEDURE NombreProcedimiento
(
@hits int output
)

AS
select @hits=isnull(hits,0) from visitas where convert(varchar,fecha,102)=convert(varchar,GetDate (),102)

La función convert con el parámetro 102 convierte las fechas al formato yyyy.mm.dd

Salu2