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
|
feedback
|
|
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). | |||
|
feedback
|
| ||||
|
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. | |||||
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. | |||
|
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. | |||
|
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. | |||
|
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. | |||
|
feedback
|