数据读取:
1、使用 fetchone() 方法获取单条数据
data = cursor.fetchone()
print(data)
2、使用fetchall()方法获取多条数据
rows = cur.fetchall()
for row in rows:
print(row)
标签:fetchall,rows,查看,python,data,数据库,print,fetchone From: https://www.cnblogs.com/ailie/p/16972046.html