I have a mysql table with products.
The products have a category ID and a name.
What I\'d like to do is order by category id first descending order and then
You can do that in this way:
ORDER BY `products`.`product_category_id` DESC ,`naam` ASC
Have a look at ORDER BY Optimization