使用 Zend 和 Doctrine 检索除最后一项之外的所有记录
我正在使用 Zend 1.11 和 Doctrine 1.2,并试图找到一种从数据库中检索记录列表的方法,不包括最后输入的记录(最后一个 id)。 我检查了 Doctrine 文档,但一无所获。请问有人可以帮助我吗?
I am working with Zend 1.11 and Doctrine 1.2 and trying to find out a way of retrieving a list of records form the database excluding last record entered (last id).
I have checked the Doctrine documentation but found nothing. Is there anybody out there that can help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 Doctrine 用户,但您应该使用 order by 和 offset。
如果我正在考虑 限制和抵消条款 和 Order by 子句,我会尝试写:
我希望它有帮助。
I'm not a Doctrine user, but you should use an order by and an offset.
If I'm considering Limit and offset clauses and Order by clause, I would try to write :
I hope it helps.