Jump to content

Can You Sort a List of COUNTED results?


PHP-Nut

Recommended Posts

???

 

I have a database holding a list of customer`s orders, i thought it would be neat to show the top 5 selling products on our website.

 

Now i have a recordset that counts each product sold which COUNTS by model_ID and GROUPS BY model_ID

 

But heres the problem i wish to show the highest COUNT descending??

So the highest COUNT is at the top and show five records giving me the Top 5 Selling models?

 

At the moment it lists them in model order as you would expect..

 

here is the rough Recordset:-

 

SELECT *, COUNT(mode_ID)
FROM order_item,products
WHERE products.prod_ID=order_item.mode_ID
GROUP BY mode_ID

 

??? Thanks Paul.

Link to comment
https://forums.phpfreaks.com/topic/77120-can-you-sort-a-list-of-counted-results/
Share on other sites

[sOLVED]

 

SELECT *, COUNT(mode_ID) As Number
FROM order_item,products
WHERE products.prod_ID=order_item.mode_ID
GROUP BY mode_ID
ORDER BY Number DESC

 

Thanks to http://www.webdevelopersnotes.com/tutorials/sql/online_mysql_training_course_counting.php3

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.