0 votes
in DBMS by

It is used with SELECT statement to group the result of the executed query using the value specified in it. It matches the value with the column name in tables and groups the end result accordingly.

Syntax:

SELECT column_name(s)

 FROM table_name

 GROUP BY column_name;

Related questions

0 votes
0 votes
0 votes
asked Dec 13, 2020 in DBMS by SakshiSharma
0 votes
asked Feb 28, 2020 in DBMS by rahuljain1
0 votes
asked Sep 9, 2019 in Spark Sql by ivor2019
...