gpt4 book ai didi

python - 如何从 python sql select 访问项目

转载 作者:行者123 更新时间:2023-11-30 23:37:57 24 4
gpt4 key购买 nike

我正在尝试从 SQL SELECT 查询中获取随机行:

    SQL = 'SELECT * FROM tblQuestion'
cursor = Databaseconnector.SELECT(SQL)
rows = cursor.fetchall()

rand = random.random(0,10)
pprint.pprint(rows)

row = rows(rand)

但是,它提示:

    Type Error: List object is not callable

最后一行

最佳答案

使用这个:

row = random.choice(rows)

将从列表中选择一个随机元素。

或者检查是否可以直接选择随机行:

SELECT * FROM tblQuestion ORDER BY RAND() LIMIT 1

关于python - 如何从 python sql select 访问项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14978686/

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