题库 Python题库 题目列表 给定以下 Python 代码,连接到一个 SQLite 数据库并查...
单选题

给定以下 Python 代码,连接到一个 SQLite 数据库并查询表 students。请问,查询结果中包含多少个学生?( )

import sqlite3

conn = sqlite3.connect(":memory:")

cursor = conn.cursor()

cursor.execute("""

CREATE TABLE students (

id INTEGER PRIMARY KEY,

name TEXT NOT NULL,

score INTEGER NOT NULL

);

""")

cursor.execute("INSERT INTO students (name, score) VALUES ('小明', 90)")

cursor.execute("INSERT INTO students (name, score) VALUES ('小芳', 85)")

cursor.execute("INSERT INTO students (name, score) VALUES ('轩轩', 92)")

cursor.execute("INSERT INTO students (name, score) VALUES ('乐乐', 88)")

conn.commit()

cursor.execute("SELECT * FROM students WHERE score >= 90")

result = cursor.fetchall()

conn.close()

print(result)

A.

0

B.

1

C.

2

D.

3

题目信息
2023年 9月 选择题
-
正确率
0
评论
107
点击