20/08/2007, 08:00
|
| | Fecha de Ingreso: junio-2007
Mensajes: 891
Antigüedad: 17 años, 5 meses Puntos: 43 | |
Re: Saber cuántos registros se han cargado hoy (o en la última carga) Create un campo tipo fecha de alta y ahí lo tienes :
CREATE TABLE LALALA
(
FECHA_ALTA DATE DEFAULT SYSDATE
)
/
SELECT COUNT(1)
FROM LALALA
WHERE TRUNC(FECHA_ALTA) = TRUNC(SYSDATE)
/ |