English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

The hat is the use of the HAVING clause. Give an example python script. - Computer Science

Advertisements
Advertisements

Question

The hat is the use of the HAVING clause. Give an example python script.

Answer in Brief
Advertisements

Solution

Having a clause is used to filter data based on the group functions. This is similar to the WHERE condition but can be used only with group functions. Group functions cannot be used in the WHERE Clause but can be used in the HAVING clause.

Example
import sqlite3
connection= sqlite3.connect(“Academy.db”)
cursor = connection. cursor( )
cursor.execute(“SELECT GENDER,COUNT(GENDER) FROM Student GROUP BY GENDER HAVING COUNT(GENDER)>3 “)
result = cursor. fetchall( )
co= [i[0] for i in cursor, description]
print(co)
print( result)

OUTPUT
[‘gender’, ‘COUNT(GENDER)’]
[(‘M’, 5)]

shaalaa.com
  Is there an error in this question or solution?
Chapter 15: Data manipulation through SQL - Evaluation [Page 319]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 15 Data manipulation through SQL
Evaluation | Q 3. | Page 319
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×