Pregunta de entrevista de Appinventiv

1. Group by VS order by main Difference ?

Respuestas de entrevistas

Anónimo

20 jun 2019

group by is for grouping same rows and order by is for sorting

Anónimo

10 ene 2019

Group By Vs Order By 1. Group By :- It is used to group our result sets of tables in database and is often used with Count, sum, avg etc. Eg:- SELECT COUNT(state), country FROM tblcountry GROUP BY country 2. Order by :- it changes only order in our result set i.e sorting SELECT COUNT(state), country FROM tblcountry ORDER BY country_id