English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Read the following details Based on that write a python script to display department-wise records database name:- organization.db Table name:- Employee Columns in the table:- Eno, EmpName, Esal, Dept - Computer Science

Advertisements
Advertisements

Question

Read the following details Based on that write a python script to display department-wise records

database name:- organization.db

Table name:- Employee

Columns in the table:- Eno, EmpName, Esal, Dept

Answer in Brief

Solution

Contents of Table: Employee

Eno EmpName Esal Dept
1001 Aswin 28000 IT
1003 Helena 32000 Accounts
1005 Hycinth 41000 IT

Coding:

import sqlite3
connection = sqlite3. connect
(” organization, db”)
cursor = connection, cursor ()
sqlcmd=””” SELECT *FROM
Employee ORDER BY Dept”””
cursor, execute (sqlcmd)
result = cursor, fetchall ()
print (“Department wise Employee List”)
for i in result:
print(i)
connection. close()

Output:

Department wise Employee List
(1003,’Helena’,32000, ‘Accounts’)
(1001,’Aswin’,28000,’IT’)
(1005,’Hycinth’,41000,’IT’)

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

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×