What is the difference between GROUP bY and ORDER BY?

GROUP BY: It is a way to sub-total your results,or perform
some other ‘aggregate’ functions on them.
ORDER BY: It is a simply a way to sort your results. It
doesn’t affect what shows up in your result set,only what
order it is displayed.