I'm trying to get a list of all browser widths used and the number of times, in order of size. So:
1920 - 12,356
1440 - 19,453
1280 - 10,847
1024 - 4,124
or something like that. It's important to list them in order of width, not usage. I'm using this:
SELECT count(browserWidth) FROM PageAction FACET browserWidth ORDER BY browserWidth LIMIT 1000
but the result I get back is ordered by most used browserWidth, not the browserWidth itself. What am I doing wrong here?