EileenJohn
Registered User.
- Local time
- Today, 04:05
- Joined
- Nov 23, 2016
- Messages
- 12
Hi, i have this tablestaff
Date staffID
11/22/2016
..
..
11/23/2016
..
..
11/24/2016
My query:
Select tablestaff.staffno, max(tablestaff.date)as maxofdate
From tablestaff
Groupby tablestaff.staffno
But.. it still not giving me all the staff ID with latest date.
Date staffID
11/22/2016
..
..
11/23/2016
..
..
11/24/2016
My query:
Select tablestaff.staffno, max(tablestaff.date)as maxofdate
From tablestaff
Groupby tablestaff.staffno
But.. it still not giving me all the staff ID with latest date.