Hi,
I am using this sql query : -
The problem is this currently pulls out 5 records (all devices found and the amount of times they appear).
How can i get it to pull out JUST the highest count.
I.E :-
that query above will pull out
15
12
10
3
1
How can i get it just to display 15.
Thanks
k0r54
I am using this sql query : -
Code:
SELECT Monthly_below_report.Device
FROM Monthly_below_report
GROUP BY Monthly_below_report.Device, Monthly_below_report.[FS-ID]
HAVING (((Monthly_below_report.[FS-ID])=780));
The problem is this currently pulls out 5 records (all devices found and the amount of times they appear).
How can i get it to pull out JUST the highest count.
I.E :-
that query above will pull out
15
12
10
3
1
How can i get it just to display 15.
Thanks
k0r54