ユーザー間のメッセージを保存するテーブルからデータを取得する際に問題があります。ここに表があります:
CREATE TABLE messages
(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
sender VARCHAR(20),
recipient VARCHAR(30),
content TEXT,
is_read TINYINT(1),
created_at DATETIME,
PRIMARY KEY (`id`) ,
INDEX idx_sender (sender) ,
INDEX idx_recipient (recipient)
);
INSERT INTO messages (id, sender, recipient, content, is_read, created_at)
VALUES
-- Alice and George
(1, 'Alice', 'George', 'Happy new year', 1, '2012-12-24 23:05:00'),
(2, 'George', 'Alice', 'It is chrimas night...', 1, '2012-12-24 23:10:00'),
(3, 'Alice', 'George', 'Happy Xmas then', 0, '2012-12-25 00:00:00'),
-- John and Paul
(4, 'John', 'Paul', 'Hi Paul', 1, '2012-12-26 09:00:00'),
(5, 'Paul', 'John', 'Hi John', 1, '2012-12-26 09:05:00'),
(6, 'John', 'Paul', 'Have you done this ?', 1, '2012-12-26 09:10:00'),
(7, 'Paul', 'John', 'No I was unpacking my gifts', 0, '2012-12-26 09:05:00'),
-- George and Tim
(8, 'George', 'Tim', 'How was the end of the world ?', 1, '2012-12-22 10:10:00'),
(9, 'Tim', 'George', 'Really nice !', 0, '2012-12-22 10:15:00'),
-- John and Tim
(10, 'John', 'Tim', 'I don\'t know if I should fire you for new year\'s eve', 1, '2012-12-27 15:20:00'),
(11, 'Tim', 'John', 'That is a great idea!', 0, '2012-12-27 15:20:00');
ジョージとジョンがマネージャーで、その他が従業員であるとします。マネージャーが受信者である最新の未読メッセージを取得する必要があります。それまでの間、会話の開始者でもあるメッセージのみを取得する必要があります。
したがって、結果は次のようになります。
- message id 7: 'Paul', 'John', 'いいえ、私はギフトを開梱していました', 0, 2012-12-26 09:05:00
- メッセージ ID 9: 'Tim'、'George'、'Really Nice'、0、2012-12-22 10:15:00
- メッセージ ID 11 : 「ティム」、「ジョン」、「それは素晴らしいアイデアです!」、0、2012-12-27 15:20:00
私はほとんどそれであるクエリを作成しましたが、メッセージID 11の行がありません:
SELECT
m.*
FROM
messages m
INNER JOIN (
-- retrieve the first message (fm)
SELECT t.sender, t.recipient
FROM (
SELECT id, sender, recipient, content, created_at,
IF ( sender IN ('John', 'George'), sender, recipient ) AS the_other
FROM messages
WHERE
sender IN ('John', 'George')
OR recipient IN ('John', 'George')
ORDER BY
created_at ASC
) t
GROUP BY
the_other
HAVING t.sender IN ('John', 'George')
) fm ON fm.recipient = m.sender
AND fm.sender = m.recipient
WHERE
m.recipient IN ('John', 'George')
AND m.is_read = 0
ORDER BY
m.created_at DESC
LIMIT 0, 10
サブクエリが the_other によってグループ化されているため、メッセージ ID 11 が欠落しています。「group by」を送信者と受信者で分割すると、メッセージ ID 3 が取得されますが、これは不要な行です。
私の問題を解決するSQLは何ですか?