15 Best SQL Queries for Developers [SQL Queries]

SQL GROUP BY clause

The “GROUP BY” clause groups records into summary rows and returns one records for each group. It is also involves aggregates like COUNT, MAX, SUM, AVG and so on…

The “GROUP BY” can be group by the single or multiple columns.

Syntax:-
SELECT ColumnNames 
 FROM TableName WHERE Condition
 GROUP BY columnNames

Example:-
SELECT DISTINCT CountryName, CountryCode
 FROM Countries
GROUP BY CountryName, CountryCode

Result:-
CountryName CountryCode
---------------------------
India           IN
Nepal           NP
Rasia           RA
USA           US

Stayed Informed SQL Server Query and Examples

I hope you are enjoying with this post! Please share with you friends. Thank you!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^