我正在尝试获取 topicID 为例如 88 的最新帖子的用户名和时间戳。
用户
id | username
--------|----------
45234 | kaka
32663 | lenny
52366 | bob
帖子
id | message | topicID | timestamp | userID
--------|-----------|---------|-----------|-------
675 | hello | 88 | 100 | 32663
676 | hey | 88 | 200 | 45234
677 | howdy | 88 | 300 | 52366
所以在这里我想要 postID 677 和用户 bob。
我可以在单个 sql 查询中执行此操作吗?
如果我能将它嵌入到这个中会很棒:
SELECT topics.id, topics.subject, topics.forum_id
FROM topics WHERE topics.forumID = 16