Python SQL 从列表变量中选择语句?

发布于 2024-11-08 17:58:13 字数 421 浏览 0 评论 0原文

我正在尝试查询我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

A君 2024-11-15 17:58:13

cursor.execute 的第二个参数是一个序列,并且您已向它传递了一个字符串(这是一个字符序列)。如果您尝试执行 1 元素元组,则需要一个逗号。即 ('item',) 而不是 ('item')

另外,您应该迭代项目而不是使用 range 和 i:

for info in infolist:
    result = cursor.execute('SELECT COUNT(DISTINCT col1) 
                               FROM tablename 
                              WHERE col2 = ?', (info,))

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:

for info in infolist:
    result = cursor.execute('SELECT COUNT(DISTINCT col1) 
                               FROM tablename 
                              WHERE col2 = ?', (info,))
悍妇囚夫 2024-11-15 17:58:13

您需要在 (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

宛菡 2024-11-15 17:58:13

您需要添加一个逗号来指示元组有 1 个元素:

>>> ('abc')
'abc'
>>> ('abc',)
('abc',)

尝试将 (infolist[i],) 传递给 cursor.execute

You need to add a comma to indicate the tuple has 1 element:

>>> ('abc')
'abc'
>>> ('abc',)
('abc',)

Try passing (infolist[i],) to cursor.execute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文