Advertisements
Advertisements
Question
Construct the following SQL statement in the student table-
SELECT statement using GROUP BY clause.
Solution
GROUP BY clause
The GROUP BY clause is used with the SELECT statement to group the students on rows or columns having identical values or divide the table into groups. For example to know the number of male students or female students of a class, the GROUP BY clause may be used. It is mostly used in conjunction with aggregate functions to produce summary reports from the database.
The syntax for the GROUP BY clause is
SELECT <column-names> FROM <table-name> GROUP BY <column-name>HAVING condition];
To apply the above command on the student table :
SELECT Gender FROM Student GROUP BY Gender;
The following command will give the below-given result:
Gender |
M |
F |
SELECT Gender, count(*) FROM Student GROUP BY Gender;
Gender | count(*) |
M | 5 |
F | 3 |
APPEARS IN
RELATED QUESTIONS
The command to delete a table is ______
The clause used to sort data in a database.
Write a query that selects all students whose age is less than 18 in order wise.
Write the difference between table constraint and column constraint?
Which component of SQL lets inserts values in tables and which lets to create a table?
What is a constraint?
Write a short note on Primary key constraints.
Write any three DDL commands.
Write a SQL statement using the DISTINCT keyword.
Construct the following SQL statement in the student table-
SELECT statement using ORDER BY clause.