Skip to content
Advertisement

How can I query the results of a MySQL query and get a COUNT() of the results that fall within a certain range?

thanks for taking the time.

I have the following query:

Which gives me the results I want which are the distinct ‘bike_id'(as there are no duplicates), the count of all the rides each ‘bike_id’ made in 2017, and the quick average for the year for each ‘bike_id’.

From here, id like to know if I can have it display the COUNT() of the “avg_rides_per_day” in different ranges, from this same result of the query above(since this info doesn’t exist in the table without using this query). For example:

0.0000-0.5000 has 328
0.5001-1.0000 has 211
1.0001-1.5000 has 101 (but in a table format, the ranges being the headers)

Hope this makes some sense. I feel its a quick problem to solve but I’m not good(total newbie).

Thank you!

Advertisement

Answer

So i figured it out so hopefully if any new people run across this issue this can help you a little bit!:

The result is everything neatly in its own column, indicating range(as the column header) and the count of unique bikes that fall in that range(as the only entry in each column).

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement