2016-04-12 63 views
1

我需要一個SQL使用自我加入最大id從第一個表。請看下面的圖表。我正在通過service_id對錶進行分組,但我需要每個組的最後一條消息。所以對於服務組5,消息計數應該是3,last_message應該是thirdMsg5。我寫了一個sql下面的一切都很好,但它在自加入的情況下拋出一個錯誤。它無法識別msgTbl1.last_message_id。我想我在準備之前先打電話給他。我需要幫助來解決這個問題什麼是最好的SQL在一個查詢中解決這個問題?如果可能的話,請以laravel查詢生成器格式提供給我這個查詢。Mysql自加入最大ID從第一個表使用groupby返回由

SELECT count(msgTbl1.id) as message_count, 
     max(msgTbl1.id) as last_message_id, 
     msgTbl1.body, 
     msgTbl2.body as last_message, 
     services.name as service_name 
FROM messages msgTbl1 
LEFT JOIN (SELECT id, body FROM messages) AS msgTbl2 
    ON msgTbl2.id = msgTbl1.last_message_id 
LEFT JOIN services on services.id = msgTbl1.service_id 
WHERE receiver_id = 4 AND read_user = 'no' 
GROUP BY msgTbl1.service_id 

enter image description here

SQL的消息表

CREATE TABLE `messages` (
    `id` int(11) UNSIGNED NOT NULL, 
    `sender_id` int(11) UNSIGNED DEFAULT NULL, 
    `receiver_id` int(11) UNSIGNED DEFAULT NULL, 
    `service_id` int(11) UNSIGNED NOT NULL, 
    `sender_type` enum('user','agent','admin') NOT NULL, 
    `receiver_type` enum('user','agent','admin') NOT NULL, 
    `body` text, 
    `files` varchar(500) DEFAULT NULL COMMENT 'serialize', 
    `new_notification` enum('no','yes') NOT NULL DEFAULT 'yes', 
    `read_user` enum('yes','no') NOT NULL DEFAULT 'no', 
    `read_agent` enum('yes','no') NOT NULL DEFAULT 'no', 
    `status` enum('active','archive','deleted') NOT NULL DEFAULT 'active', 
    `created_at` datetime NOT NULL, 
    `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 
) ENGINE=InnoDB DEFAULT CHARSET=latin1; 

INSERT INTO `messages` (`id`, `sender_id`, `receiver_id`, `service_id`, `sender_type`, `receiver_type`, `body`, `files`, `new_notification`, `read_user`, `read_agent`, `status`, `created_at`, `updated_at`) VALUES 
(1, 22, 4, 5, 'user', 'agent', 'firstMsg5', NULL, 'yes', 'no', 'yes', 'active', '2016-03-24 00:00:00', '2016-04-12 05:40:28'), 
(2, 22, 4, 5, 'user', 'agent', 'secondMsg5', NULL, 'yes', 'no', 'yes', 'active', '2016-03-24 00:00:00', '2016-04-12 05:40:31'), 
(3, 22, 4, 9, 'user', 'agent', 'firstMsg9', NULL, 'yes', 'yes', 'yes', 'active', '2016-03-24 00:00:00', '2016-04-12 05:40:45'), 
(4, 4, 4, 9, 'agent', 'user', 'secondMsg9', NULL, 'yes', 'yes', 'yes', 'active', '2016-03-24 00:00:00', '2016-04-12 05:40:56'), 
(5, 22, 4, 5, 'user', 'agent', 'thirdMsg5', NULL, 'yes', 'yes', 'yes', 'active', '2016-03-24 00:00:00', '2016-04-12 05:41:08'); 
+0

感謝@rhavendc我嘗試過,這是行不通的。同樣的錯誤。 **'on子句'中的未知列'last_message_id'** – murad

回答

1

試試這個:

SELECT message_count, 
     last_message_id, 
     msgTbl1.body,   
     services.name as service_name 
FROM messages msgTbl1 
INNER JOIN (
    SELECT MAX(id) AS last_message_id, COUNT(*) AS message_count 
    FROM messages 
    WHERE read_user = 'no' 
    GROUP BY service_id) AS msgTbl2 
    ON msgTbl1.id = msgTbl2.last_message_id 
LEFT JOIN services on services.id = msgTbl1.service_id 
WHERE receiver_id = 4 
+0

感謝@Giorgos Betsos的回覆。 但它還沒有解決 https://gyazo.com/f2d21a638fd0b4b4bb2e2c95fb14bd11 它顯示了兩個相同的服務下的消息。 先看一下Msg5和secondMsg5是否在同一個服務中。 我需要像這樣的輸出 https://gyazo.com/163e76c86185228642a92c95cbb3dfcd – murad

+0

@murad嘗試使用'INNER JOIN'並告訴我你會得到什麼結果。 –

+0

INNER JOIN拋出一個空的結果。 – murad

相關問題