Considering the table given above, predict the output of the following question PYTHON :- (3) mycon = sqltor.connect(…..) cursor = mycon.cursor( ) query = “select INo,SNo from Item where price>%s” %(5000,) cursor.execute(query) data = cursor.fetchmany(3) count = cursor.rowcount print(“Initial value of count is”,count) data= cursor.fetchone() count = cursor.rowcount print(data) print(“Now the value of count is “,count) mycon.close() please give me the output
Answers
Answered by
1
Answer:
SORRY TO SAY ABOUT I CANNOT UNDERSTAND WHAT IS THIS.....
Similar questions