SQLAlchemy 查询只返回 n 个结果? [英] SQLAlchemy query to return only n results?

查看:45
本文介绍了SQLAlchemy 查询只返回 n 个结果?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在谷歌搜索和阅读 SQLAlchemy 文档,但没有找到我要找的东西.

I have been googling and reading through the SQLAlchemy documentation but haven't found what I am looking for.

我正在 SQLAlchemy 中寻找一个函数,该函数将查询返回的结果数量限制为某个数量,例如:5?类似 first()all() 之类的东西.

I am looking for a function in SQLAlchemy that limits the number of results returned by a query to a certain number, for example: 5? Something like first() or all().

推荐答案

for sqlalchemy >= 1.0.13使用 limit 方法.

for sqlalchemy >= 1.0.13 Use the limit method.

query(Model).filter(something).limit(5).all()

这篇关于SQLAlchemy 查询只返回 n 个结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆