Zend Framework 中的 limitPage() 和一些 JOIN

发布于 2024-10-29 16:39:45 字数 675 浏览 1 评论 0原文

程序员。
我有下一个 SELECT 语句,是使用 Zend Framework 创建的:

$select = $this->select()
    ->from('post')
    ->setIntegrityCheck(false)
    ->join('post_category', 'post.category_id = post_category.id', array(
        'category_name' => 'name',
        'category_name_key' => 'name_key'))
    ->joinLeft('post_comment', 'post_comment.post_id = post.id', array(
        'comment', 'comment_date_creation' => 'date_creation'))
    ->limitPage(2, 10);

但这是 limitPage() 中的一个问题。例如,我的 post 表中有 100 行。 JOINing SELECT 后返回(例如)200 行。但我应该LIMIT仅具有所有关系的post表中的行。如何使用 Zend Framework 在一个查询中完成此操作?

Programmers.
I have the next SELECT statement, created using Zend Framework:

$select = $this->select()
    ->from('post')
    ->setIntegrityCheck(false)
    ->join('post_category', 'post.category_id = post_category.id', array(
        'category_name' => 'name',
        'category_name_key' => 'name_key'))
    ->joinLeft('post_comment', 'post_comment.post_id = post.id', array(
        'comment', 'comment_date_creation' => 'date_creation'))
    ->limitPage(2, 10);

But it is one problem in limitPage(). For example I have 100 rows in post table. And after JOINing SELECT returns (for example) 200 rows. But I should LIMIT only rows from the post table with all relations. How can I do it in ONE query using Zend Framework?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白芷 2024-11-05 16:39:46

真正的问题是你将如何用简单的 SQL 来做到这一点?! IMO 你不能在 SQL 中做到这一点。这就是您无法使用 Zend_Db_Select 执行此操作的原因;)使用您将使用的普通 SQL 查询更新您的帖子,我将告诉您如何使用 Zend_Db 编写该查询。

The real question is how would you do it in plain SQL?! IMO you can't do that in SQL. And that is the very reason you can't do that using Zend_Db_Select either ;) Update your post with the plain SQL query you would use and I would tell you how to write that using Zend_Db.

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