So I have the following database format:
+------++------+
| ID | Value |
+------++------+
| 1 | 5 |
| 1 | 2 |
| 1 | 8 |
| 1 | 1 |
| 2 | 2 |
| 2 | 3 |
| 2 | 6 |
| 2 | 10 |
| 3 | 1 |
| 3 | 2 |
| 3 | 5 |
| 3 | 3 |
| 3 | 5 |
+------++------+
And I am trying to output the top 3 values of each ID. Like:
+------++------+
| ID | Value |
+------++------+
| 1 | 8 |
| 1 | 5 |
| 1 | 3 |
| 2 | 10 |
| 2 | 6 |
| 2 | 3 |
| 3 | 5 |
| 3 | 5 |
| 3 | 3 |
+------++------+
Is this possible to do in MS Access using SQL?