以下作品:
>>> 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)
关于python - 使用sql sqlite3从sqlite表中选择其中rowid在列表中— DB-API 2.0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5766230/