gpt4 book ai didi

python - 选择一批行 sqlalchemy mysql

转载 作者:太空狗 更新时间:2023-10-29 22:29:49 26 4
gpt4 key购买 nike

我有一个 MySQL 数据库,其中包含几千个论坛帖子和文本。我想分批抓取它们,一次说 1000 个,然后在 python3 中对它们进行处理。

我的单个帖子查询如下所示:

pquery = session.query(Post).\
filter(Post.post_id.like(post_id))

如何更改它以便在给定 post_id 的情况下返回该帖子及其后的 999 个帖子?

最佳答案

使用limitoffset:

pquery = session.query(Post).filter(Post.post_id.like(post_id)).limit(1000).offset(the_offset_val)

关于python - 选择一批行 sqlalchemy mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32466185/

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