What is the difference between GROUP BY and ORDER BY in
Sql?
Answer Posted / niraj kumar
To sort a result, use an ORDER BY clause.
The most general way to satisfy a GROUP BY clause is to
scan the whole table and create a new temporary table where
all rows from each group are consecutive, and then use this
temporary table to discover groups and apply aggregate
functions (if any).
ORDER BY [col1],[col2],...[coln]; Tells DBMS according to
what columns it should sort the result. If two rows will
hawe the same value in col1 it will try to sort them
according to col2 and so on.
GROUP BY [col1],[col2],...[coln]; Tells DBMS to group
(aggregate) results with same value of column col1. You can
use COUNT(col1), SUM(col1), AVG(col1) with it, if you want
to count all items in group, sum all values or view
average.
| Is This Answer Correct ? | 24 Yes | 7 No |
Post New Answer View All Answers
How to display top 50 rows?
How to delete the repeated records from a table?
Do I need to pay for mysql?
What is the role of a limit in a mysql query?
Can we store files in mysql?
What does blob mean in mysql?
What is InnoDB?
How do I optimize a selected query in mysql?
What do I do if I forgot my mysql root password?
write a query to mysql in safe mode and to change the root password
What is mysql installer?
What is the difference between heap table and temporary table?
Does mysql support sequence?
Write a query to fetch duplicate records from a table using mysql?
What is ibdata1?