从每个类别中选择最新帖子

时间:2015-11-24 06:17:23

标签: mysql sql

我试图从日期订购的每个类别的帖子中获取最新的帖子,我试过这个,但它没有从表中给出最新的帖子,当我在'group by'之前使用'order by'时,帖子是没有使用mysql按日期排序。

SELECT post_id, category, author_id, title, article, time FROM (SELECT * FROM blog_post GROUP BY category LIMIT 0,5 ) AS timePost ORDER BY time DESC

SELECT post_id, category, author_id, title, article, time FROM (SELECT * FROM blog_post ORDER BY date LIMIT 0,5 ) AS timePost GROUP BY category

3 个答案:

答案 0 :(得分:1)

您可以自我加入

ipArray = malloc(numOfIps * sizeof(struct host_struct)); 

希望这有帮助。

答案 1 :(得分:0)

在MS SQL中,根据我的假设,您的问题并不清楚

input {
  width: 0;
  opacity: 0;
}

#button {
  position: relative;
  font-size: 32px;
  width: 150px;
  left: 32vw;
  opacity: 0;
}

答案 2 :(得分:-1)

这似乎有效......我不知道它的效率如何

showMatch(input, @"(?:[0-9]+){17}");