English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Write a Python script to create a table called ITEM with the following specifications. Add one record to the table. Name of the database:- ABC Name of the table:- Item Column name and specification:- - Computer Science

Advertisements
Advertisements

Question

Write a Python script to create a table called ITEM with the following specifications.

Add one record to the table.

Name of the database:- ABC

Name of the table:- Item

Column name and specification:-

Icode :- integer and act as primary key
Item Name :- The character with a length of 25
Rate :- Integer
Record to be added :- 1008, Monitor, 15000
Answer in Brief

Solution

Coding:

import sqlite3
connection = sqlite3 . connect (“ABC.db”)
cursor = connection, cursor ()
sql_command = ” ” ”
CREATE TABLE Item (Icode INTEGER,
Item_Name VARCHAR (25),
Rate Integer); ” ‘” ”
cursor, execute (sql_command)
sql_command = ” ” “INSERT INTO Item
(Icode,Item_name, Rate)VALUES (1008,
“Monitor”, “15000”);” ” ”
cursor, execute (sqlcmd)
connection, commit ()
print(“Table Created”)
cursor. execute(SELECT *FROM ITEM”)
result=cursor.fetchall():
print(“CONTENT OF THE TABLE
print(*result,sep=”\n”)
connection, close ()

Output:

Table Created
CONTENT OF THE TABLE :
(1008, ‘Monitor’, 15000)

shaalaa.com
SQL Query Using Python
  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 4. | Page 319
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×