Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a mySQL table which has product options in it. What I need to do is order by the product price and then group by the product ID so I can then do another query to pull the relevant info once the product IDs are in the correct order.

I need to know how to write the correct mySQL query with PHP.

Many thanks

Pete

share|improve this question
1  
What have you tried? – Wayne Whitty Aug 28 '12 at 9:48
When you say "order by ... and then group", what do you mean? Do you want to fetch the groupwise maxima/minim‌​a? Or are you seeking to return all the records within each "group" (which is not a SQL grouping operation at all, but probably a case of sorting first by product ID and then by price; one can then presentationally "group" the results as desired from within PHP)? – eggyal Aug 28 '12 at 9:53

closed as not a real question by FelipeAls, Jürgen Thelen, Bryan Crosby, dgw, bmargulies Aug 29 '12 at 1:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can try this

SELECT * FROM tableName GROUP BY productID ORDER BY product, price 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.