I have the following SQL statement:
SELECT tblLoggerData.StoreRecordingLocationId, tblLoggerData.LoggerNumber, tblLoggerData.StartTime
FROM tblLoggerData;
I need the query to return the top 5 StartTimes for each LoggerNumber
How do I modify the SQL statement to do this?
Many thanks in advance
SELECT tblLoggerData.StoreRecordingLocationId, tblLoggerData.LoggerNumber, tblLoggerData.StartTime
FROM tblLoggerData;
I need the query to return the top 5 StartTimes for each LoggerNumber
How do I modify the SQL statement to do this?
Many thanks in advance