gpt4 book ai didi

Python/sqlite : get column values as a list/tuple from rows where other columns have certain values

转载 作者:行者123 更新时间:2023-12-03 17:54:54 24 4
gpt4 key购买 nike

我有一个包含 4 列的 sqlite 表,例如:id、pagenr、x1、y1。
我需要将 y1 列值作为列表/元组获取,但只能从 pagenr 和 x1 具有特定值的行中获取。帮助很大。注意:我使用的是 python 2.6。

最佳答案

这段使用 sqlite3 模块的代码应该将查询结果的行提取到 output 中。列表:

conn = sqlite3.connect('database.db')
c = conn.cursor()
c.execute('select y1 from table where pagenr=? and x1=?',
(pagenr_value, x1_value))
output = c.fetchall()

关于Python/sqlite : get column values as a list/tuple from rows where other columns have certain values,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10937334/

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