How do I group the results of a mysql query?
Here is how the query might look:
SELECT columns FROM Table WHERE clause GROUP BY column ORDER BY column
Common mistakes are to apply the GROUP BY either before the WHERE clause or after the ORDER BY - make sure you get it right.
Also remember that you are returning aggregate data rather than every result as an individual row, therefore it can take a little bit of careful thinking as to when you should use GROUP BY and a realisation of what will be returned when you do.
Comment on this Question and Answer >>>
ASK A QUESTION
More mysql PHP Questions
I am unable to make pages for my search result.Below I am giving the code that I am using. Career Search result Yami saysHow do I include a conditional in my mysql query?
how to write sessions in php code?
Why will this statement not print a column with "lastname space firstname"? Print " .$info['businessname'] "; Print " .$info['firstname']. " " .$info['lastname'] "; I want to see 2 columns - a
How do I insert the date into my table?
