up vote 9 down vote favorite
1
share [g+] share [fb]

When do you use which in general? Examples are highly encouraged!

I am referring so MySql, but can't image concept being different on another DBMS

link|improve this question

feedback

7 Answers

up vote 22 down vote accepted

ORDER BY alters the order in which items are returned.

GROUP BY will aggregate records by the specified columns which allows you to perform aggregation functions on non-grouped columns (such as SUM, COUNT, AVG, etc).

link|improve this answer
feedback
TABLE:
ID NAME
1  Peter
2  John
3  Greg
4  Peter

SELECT *
FROM TABLE
ORDER BY NAME

= 
3 Greg
2 John
1 Peter
4 Peter

SELECT Count(ID), NAME
FROM TABLE
GROUP BY NAME

= 
1 Greg
1 John 
2 Peter

SELECT NAME
FROM TABLE
GROUP BY NAME
HAVING Count(ID) > 1

=
Peter
link|improve this answer
feedback

The difference is exactly what the name implies: a group by performs a grouping operation, and an order by sorts.

If you do "SELECT * FROM Customers ORDER BY Name" then you get the result list sorted by the customers name.

If you do "SELECT IsActive, COUNT(*) FROM Customers GROUP BY IsActive" you get a count of active and inactive customers. The group by aggregated the results based on the field you specified.

link|improve this answer
1  
Moreover: if you GROUP, the results are not necessarily sorted; although in many cases they may come out in an intuitive order, that's not guaranteed by the GROUP clause. If you want your groups sorted, always use an explicity ORDER BY after the GROUP BY. – Dave Costa Aug 14 '09 at 12:31
feedback

They have totally different meaning and aren't really related at all.

ORDER BY allows you to sort the result set according to different criteria, such as first sort by name from a-z, the sort by the price highest to lowest.

(ORDER BY name, price DESC)

GROUP BY allows you to take your result set, group it into logical groups and then run aggregate queries on the groups. You could for instance select all employees, group them by their workplace location and calculate the average salary. This would give you the average salary of an employee at a given location in your database.

link|improve this answer
feedback

Some good examples there. Just like to add my own from webcheatsheet which gives good clear examples, as well as letting you execute your own SQL.

SQL Order By

SQL Group By

link|improve this answer
feedback

GROUP BY is used to group rows in a select, usually when aggregating rows (e.g. calculating totals, averages, etc. for a set of rows with the same values for some fields).

ORDER BY is used to order the rows resulted from a select statement.

link|improve this answer
feedback

Simple, order_by orders the data and group_by groups/combines the data.

Order by orders the result set as per the mentioned field, by default in ascending order.

suppose you are firing a query as order_by(student_roll_number), it will show you result in ascending order of student's roll numbers. here roll_number entry might occur more then once.

in group_by case, we use this with aggregate functions, and it groups the data as per the aggregate function and we get the result. here if our query have sum(marks) along with group_by(roll_no) it will show sum of marks of each student. i.e each student will have only a single entry in result set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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