हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा १२

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

Advertisements
Advertisements

प्रश्न

Construct the following SQL statement in the student table-

SELECT statement using GROUP BY clause.

संक्षेप में उत्तर

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 12: Structured Query Language (SQL) - Evaluation [पृष्ठ २३१]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
अध्याय 12 Structured Query Language (SQL)
Evaluation | Q 4. (i) | पृष्ठ २३१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×