How to take first 4 time for each person.
- by Gopal
Using Access Database
Table
ID Time
001 100000
001 100005
001 103000
001 102500
001 110000
001 120000
001 113000
...,
From the above table, i want to take first four time
Query like
Select id, min(time) from table group by id
I want to take first four min(time) for each person
Expected Output
ID Time
001 100000
001 100005
001 102500
001 103000
002
...,
How to make a query for this condition?