gpt4 book ai didi

python - SQLite3 Python : executemany SELECT

转载 作者:IT王子 更新时间:2023-10-29 06:25:04 29 4
gpt4 key购买 nike

我正在尝试使用 executemany 函数将表中的所有行排成一行,并使用一些 WHERE 约束

import sqlite3

con = sqlite3.connect('test.db')
cur = con.cursor()

cur.execute('CREATE TABLE IF NOT EXISTS Genre (id INTEGER PRIMARY KEY, genre TEXT NOT NULL)')

values = [
(None, 'action'),
(None, 'adventure'),
(None, 'comedy'),
]


cur.executemany('INSERT INTO Genre VALUES(?, ?)', values)

ids=[1,2]

cur.executemany('SELECT * FROM Genre WHERE id=?', ids)

rows = cur.fetchall()
print rows

错误

cur.executemany('SELECT * FROM Genre WHERE id=?', ids)
sqlite3.ProgrammingError: You cannot execute SELECT statements in executemany()

最佳答案

使用 execute() 执行返回数据的查询。

您要么必须使用循环,要么使用 IN (id1, id2, id3) where 子句:

cur.execute('SELECT * FROM Genre WHERE id in ({0})'.format(', '.join('?' for _ in ids)), ids)

上述表达式为 ids 中的每个项目插入一个单独的 ? 占位符(以逗号分隔)。

关于python - SQLite3 Python : executemany SELECT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14142554/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com