I'm having trouble querying with the 'max' function. Below is my table:
Time Head Count
0:00 10
0:30 15
1:00 9
1:30 7
I'm trying to use the 'max' function for 'Headcount' field and I want it to return the time interval that has the 'max' headcount which would be 15. Instead, it's returning the whole table.
Time Head Count
0:00 10
0:30 15
1:00 9
1:30 7
I'm trying to use the 'max' function for 'Headcount' field and I want it to return the time interval that has the 'max' headcount which would be 15. Instead, it's returning the whole table.