English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Construct the following SQL statement in the student table- SELECT statement using GROUP BY clause. - Computer Science

Advertisements
Advertisements

Question

Construct the following SQL statement in the student table-

SELECT statement using GROUP BY clause.

Answer in Brief

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
shaalaa.com
SQL Commands and Their Functions
  Is there an error in this question or solution?
Chapter 12: Structured Query Language (SQL) - Evaluation [Page 231]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 12 Structured Query Language (SQL)
Evaluation | Q 4. (i) | Page 231
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×