Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
2.0k views
in Data Manipulation Through SQL by (49.1k points)
closed by

Write the Python script to display all the records of the following table using fetchmany( )

1 Answer

+1 vote
by (54.8k points)
selected by
 
Best answer
Icode Item Name Rate
1003 Scanner 10500
1004 Speaker 3000
1005 Printer 8000
1008 Monitor 15000
1010 Mouse 700

import sqlite3

connectoin = sqlite3.connect(“company.db”) cursor = connection.cursor() cursor.execute(“Select * from product”)

print(“Displaying Records”) result = cursor.fetchmany(5)

print(*result, Sep = “\n”) 

Output:

Displaying records (1003, ‘Scanner’ , 10500) 

(1004, ’Speaker’ , 3000)

(1005, ‘Printer’ , 8000)

(1008, ’Monitor’ , 15000)

(1010, ‘Mouse’ , 700)

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

...