第14263题 单选
SQLite中cursor.fetchmany(2)执行后打印结果的作用是什么?
values = cursor.fetchmany(2)
print(values)
A

输出前两条记录

B

输出第2条记录

C

输出后两条记录

D

输出中间两条记录