使用 Zend 和 Doctrine 检索除最后一项之外的所有记录

发布于 2024-12-12 18:59:37 字数 115 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木緿 2024-12-19 18:59:37

我不是 Doctrine 用户,但您应该使用 order by 和 offset。

如果我正在考虑 限制和抵消条款Order by 子句,我会尝试写:

$q = Doctrine_Query::create()
    ->select('u.username')
    ->from('User u')
    ->limit($k) // where $k is a great int, try without but I doubt this will work
    ->offset(1)
    ->orderBy('u.id DESC');

我希望它有帮助。

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 :

$q = Doctrine_Query::create()
    ->select('u.username')
    ->from('User u')
    ->limit($k) // where $k is a great int, try without but I doubt this will work
    ->offset(1)
    ->orderBy('u.id DESC');

I hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文