0

尝试做一个论坛系统优化,在一个查询中选择所有最后的海报并将它们存储在一个数组中。事情是数据库正在返回意外的结果

PHP 版本 5.3.13

MySQL 版本 5.1.63

$getPosts = $dB->fetch('
  SELECT
    post_id, post_poster_id, post_topic_id, post_time,
    COUNT(post_id) as count
  FROM forum_posts
  WHERE post_topic_id IN (
    SELECT topic_id
    FROM forum_topics
    WHERE topic_forum_id = ' . $forum_id . '
  )
  GROUP BY post_topic_id
  ORDER BY post_time DESC
');
foreach($getPosts as $lastPoster)
{
    $lastPosts[$lastPoster['post_topic_id']] = $lastPoster;
}
4

1 回答 1

0
SELECT
   p.post_id, p.post_poster_id, p.post_topic_id, p.post_time, l.count

FROM forum_posts AS p

-- joining with list of latests in a derived table
INNER JOIN

-- getting latest time and count
(SELECT p.post_topic_id, MAX(post_time) AS post_time, COUNT(post_id) AS count
FROM forum_posts AS p
-- filtering forum_id with join, join is usually preferrable than subquery
INNER JOIN forum_topics AS t ON t.topic_id = p.post_topic_id AND t.topic_forum_id = '$forum_id'
GROUP BY post_topic_id)

AS l USING(post_topic_id, post_time)

-- grouping to strip possible post_time-in-one-topic-duplicates
GROUP BY p.post_topic_id
于 2012-06-27T21:21:33.770 回答