为每个用户多表示例选择最后一个条目

时间:2014-04-12 10:07:30

标签: sql multi-table

鉴于以下表格   表格消息

id message   time_send             
14 "first"   2014-02-10 22:16:31   
15 "second"  2014-02-14 09:35:20
16 "third"   2014-02-13 09:35:47
17 "fourth"  2014-03-10 22:16:31
18 "fifth"   2014-03-14 09:35:20
19 "sixth"   2014-04-12 09:35:47
20 "seventh" 2014-04-13 09:35:47
21 "eighth"  2014-04-14 09:35:47

table message_owner

id message_id owner_id cp_id
1  14         1        4
2  14         4        1
3  15         12       4
4  15         4        12
5  16         4        1
6  16         1        4
7  17         12       4
8  17         4        12
9  18         4        1
10 18         1        4
11 19         12       4
12 19         4        12
13 20         12       1
14 20         1        12
15 21         12       7
16 21         7        12

我想查询给定所有者的每个对方(cp_id)的最新消息。 例如对于owner_id = 4,我想要以下输出:

id message   time_send            owner_id  cp_id
18 "fifth"   2014-03-14 09:35:20  4         1
19 "sixth"   2014-02-13 09:35:47  4         12

我在一个表中看到很多示例,但我无法在多个示例中对它们进行转置。

edit1:添加更多条目

1 个答案:

答案 0 :(得分:1)

这应该有效:

SELECT m.id, m.message, mo.owner_id, mo.cp_id
   FROM message m
   JOIN message_owner mo ON m.id=mo.message_id
   WHERE mo.owner_id=4
   AND   m.time_send=(
      SELECT MAX(time_send)
      FROM message m2
      JOIN message_owner mo2 ON mo2.message_id=m2.id
      WHERE mo2.owner_id=mo.owner_id
      AND   mo2.cp_id   =mo.cp_id
   )

...请注意,在时间戳列上放置WHERE条件有时可能无法正常工作。

没有关节的相同例子:

SELECT m.id, m.time_send, m.message, mo.owner_id, mo.cp_id
FROM message m, message_owner mo
WHERE m.id        = mo.message_id
AND   mo.owner_id = 4   
AND   m.time_send = (
   SELECT MAX(time_send)
   FROM message m2, message_owner mo2
   WHERE mo2.message_id = m2.id
   AND   mo2.owner_id   = mo.owner_id
   AND   mo2.cp_id      = mo.cp_id
);

http://sqlfiddle.com/#!2/558d7/4