Python SQL 从列表变量中选择语句?
我正在尝试查询我的 sqlite3 数据库并使用列表中的值。这是我的代码:
for i in range(len(infolist)):
result = cursor.execute('SELECT COUNT(DISTINCT col1)
FROM tablename
WHERE col2 = ?', (infolist[i]))
我收到此错误:
编程错误:“提供的绑定数量不正确。当前语句使用 1,并且提供了 22 个。'
该字符串有 22 个字符,这解释了为什么有 22 个绑定。显然我没有将字符串正确传递到 SQL 语句中。
I am trying to query my sqlite3 db and use values from a list. Here's my code:
for i in range(len(infolist)):
result = cursor.execute('SELECT COUNT(DISTINCT col1)
FROM tablename
WHERE col2 = ?', (infolist[i]))
I receive this error:
ProgrammingError: 'Incorrect number of bindings supplied. The current statement uses 1, and there are 22 supplied.'
The string has 22 characters which explains why there are 22 bindings. Clearly I'm not passing the string correctly into the SQL statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
cursor.execute 的第二个参数是一个序列,并且您已向它传递了一个字符串(这是一个字符序列)。如果您尝试执行 1 元素元组,则需要一个逗号。即
('item',)
而不是('item')
另外,您应该迭代项目而不是使用 range 和 i:
The second argument to cursor.execute is a sequence and you have passed it a string (which is a sequence of characters). If you are trying to do a 1 element tuple, you need a comma. i.e.
('item',)
instead of('item')
Also you should iterate over the items and not use range and i:
您需要在
(infolist[i])
末尾添加一个逗号,现在它是一个 22 个字符的字符串而不是元组。(infolist[i],)
应该解决这个问题You need to add a comma to the end of
(infolist[i])
right now it's a 22 character string not a tuple.(infolist[i],)
should fix that您需要添加一个逗号来指示元组有 1 个元素:
尝试将
(infolist[i],)
传递给cursor.execute
。You need to add a comma to indicate the tuple has 1 element:
Try passing
(infolist[i],)
tocursor.execute
.