Zend Framework 中的 limitPage() 和一些 JOIN
程序员。
我有下一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真正的问题是你将如何用简单的 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.