24/11/2006, 04:09
|
| | Fecha de Ingreso: noviembre-2006
Mensajes: 5
Antigüedad: 18 años Puntos: 0 | |
Prueba con las Funciones Analíticas Buenas, yo probaría con las funciones analíticas. Prueba a ver si esta select te pudiese funcionar:
select ENTITYID,TO_CHAR(FECHAHORA, 'DD/MM/YYYY HH24:MI') from (
select ENTITYID,FECHAHORA, row_number() over (partition by ENTITYID
order by FECHAHORA desc) rn from MEDICION_CALIDAD)
where rn<5
order by 1,2 desc
Un saludo. |