08/04/2009, 06:00
|
Colaborador | | Fecha de Ingreso: marzo-2008 Ubicación: Cáceres
Mensajes: 3.735
Antigüedad: 16 años, 9 meses Puntos: 300 | |
Respuesta: ¿Existe algo parecido a ROW_NUMBER() en Access? Tal vez con una consulta SQL como esta
SELECT t.Ref, t1.fech as fecha, max( Exp ) as Exp
FROM tabla t
INNER JOIN (
SELECT Ref as refe, max( fecha ) as fech
FROM `tabla`
GROUP BY Ref
)t1 ON t.fecha = t1.fech
AND t.Ref = t1.refe
GROUP BY t1.fech |