我可以使用Zend_Db_Select重写这个吗?

时间:2009-08-18 05:08:29

标签: php mysql zend-framework

我需要编写以下查询:

SELECT forum_threads.id AS id_thread,
forum_threads.topic,
forum_threads.date_created,
forum_posts.content,
CONCAT(users.first, ' ', users.last) AS author_name 
  FROM forum_threads,forum_posts,users
     WHERE forum_threads.category_id=1
        AND forum_threads.author_id=users.id
        AND forum_posts.id=
            (SELECT id FROM forum_posts WHERE thread_id=`id_thread` ORDER BY date_posted ASC LIMIT 0,1)

我不是要求任何人为我做这项工作。我只是在引用中找不到可以执行此类查询的任何内容。指出我正确的方向,这应该是我需要的一切。

我可以达到我需要子查询的程度,然后我不知道如何进步。有什么想法吗?

仅供参考:我想使用Zend_Db_Select对象,因为我将它发送给Zend_Paginator

澄清查询正在做什么:使用第一篇文章的内容拉长给定论坛类别的所有主题。

1 个答案:

答案 0 :(得分:5)

我在Zend工作期间开发了很多Zend_Db_Select,我也编写了文档和单元测试。

我对Zend_Db_Select的通常建议是您不必使用。当您拥有需要的复杂应用程序逻辑来逐个构建查询时,可以使用它。如果您已经知道完整的SQL查询,那么只需将其作为字符串执行就更容易了,并且根本不使用Zend_Db_Select

但是为了回答您的问题,我在下面提供了一个解决方案。

我更改了查询,因此它不需要子查询。我正在使用LEFT JOIN的技巧来匹配帖子p,该帖子p2没有其他早期帖子thread_id$select = $db->select() ->from(array('t'=>'forum_threads'), array('id_thread'=>'id', 'topic', 'date_created')) ->join(array('p'=>'forum_posts'), 't.id=p.thread_id', array('content')) ->joinLeft(array('p2'=>'forum_posts'), 't.id=p2.thread_id AND p.id > p2.id', array()) ->join(array('u'=>'users'), 't.author_id = u.id', array('author_name'=>new Zend_Db_Expr("CONCAT(u.first, ' ', u.last)"))) ->where('t.category_id = 1') ->where('p2.id IS NULL'); 相同。这应该比您拥有的子查询更有效。

SELECT `t`.`id` AS `id_thread`, `t`.`topic`, `t`.`date_created`, `p`.`content`,
  CONCAT(u.first, ' ', u.last) AS `author_name` 
FROM `forum_threads` AS `t`
 INNER JOIN `forum_posts` AS `p` ON t.id=p.thread_id
 LEFT JOIN `forum_posts` AS `p2` ON t.id=p2.thread_id AND p.id > p2.id
 INNER JOIN `users` AS `u` ON t.author_id = u.id 
WHERE (t.category_id = 1) AND (p2.id IS NULL)

我测试了它,它有以下输出:

{{1}}