单选题

运行以下代码输出的数据为?()

import sqlite3connection=sqlite3.connect("students.db")cursor=connection.cursor()cursor.execute("CREATE TABLE students(name TEXT,age INTEGER)")cursor.execute("INSERT INTO students VALUES('John',19)")cursor.execute("INSERT INTO students VALUES('John',18)")cursor.execute("DELETE FROM students WHERE name='John'")cursor.execute("INSERT INTO students VALUES('John',17)")cursor.execute("UPDATE students SET age=22 WHERE name='John'")cursor.execute("SELECT*FROM students")results=cursor.fetchall()for row in results:    print(row)connection.close()

A.

('John',22)

B.

('John',18)

C.

('John',19)

D.

('John',17)

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部