Ver Mensaje Individual
  #6  
Antiguo 28-07-2005
Avatar de hector.roma
hector.roma hector.roma is offline
Miembro
 
Registrado: jul 2005
Ubicación: a caballo entre Galicia y Portugal
Posts: 58
Reputación: 19
hector.roma Va por buen camino
En T-SQL

Si mal no recuerdo esto te puede dar alguna idea...

Código SQL [-]
SELECT ... tus campos ...
Código SQL [-]
FROM tu_tabla
WHERE DATEPART(day, tu_fecha) = DATEPART(day, GETDATE())
AND DATEPART(month, tu_fecha) = DATEPART(month, GETDATE())


...quiero pensar que estas funciones tambien las habrá en Paradox, suerte.

De esta forma no tienes que llegar hasta el Delphi, y lo puedes hacer directamente.

Última edición por hector.roma fecha: 28-07-2005 a las 17:54:52. Razón: maquetaje
Responder Con Cita