标签: python sqlite
如果我可以直接使用cursor.execute,为什么还要引用cursor.fetchall()?
由于
答案 0 :(得分:2)
因为cursor.execute()实际上并未返回数据。大概你需要这个,所以你需要运行fetchall。
cursor.execute()
fetchall