मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता १२

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

Advertisements
Advertisements

प्रश्न

Read the following details Based on that write a python script to display records in descending order of

Eno

database name:- organization.db

Table name:- Employee

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

थोडक्यात उत्तर

उत्तर

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 ()
cursor, execute (“SELECT *
FROM Employee ORDER BY Eno DESC”)
result = cursor, fetchall ()
print (“Department wise
Employee List in descending order:”)
for i in result:
print(i)
connection.close()

Output:

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

shaalaa.com
Updating a Record
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 15: Data manipulation through SQL - Evaluation [पृष्ठ ३१८]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
पाठ 15 Data manipulation through SQL
Evaluation | Q 5. | पृष्ठ ३१८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×