从sqlite表中选择rowid在列表中使用python sqlite3 – DB-API 2.0

前端之家收集整理的这篇文章主要介绍了从sqlite表中选择rowid在列表中使用python sqlite3 – DB-API 2.0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下作品:
>>> cursor.execute("select * from sqlitetable where rowid in (2,3);")

以下不是:

>>> cursor.execute("select * from sqlitetable where rowid in (?) ",[[2,3]] )
sqlite3.InterfaceError: Error binding parameter 0 - probably unsupported type.

有没有办法传递一个python列表,而不必先将它格式化成一个字符串?

不幸的是每个值都必须有自己的参数标记(?).
由于参数列表(可能)具有任意长度,因此您必须使用字符串格式来构建正确数量的参数标记.幸运的是,这不是很难:
args=[2,3]
sql="select * from sqlitetable where rowid in ({seq})".format(
    seq=','.join(['?']*len(args)))

cursor.execute(sql,args)
原文链接:https://www.f2er.com/sqlite/197754.html

猜你在找的Sqlite相关文章