Last active
July 4, 2024 03:25
-
-
Save hassanrazadev/dbc21e5b97643e211feba23f0b1afe5d to your computer and use it in GitHub Desktop.
Revisions
-
hassanrazadev revised this gist
Feb 1, 2021 . No changes.There are no files selected for viewing
-
hassanrazadev created this gist
Feb 1, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,52 @@ SELECT * FROM messages, ( SELECT MAX(id) as lastid FROM messages WHERE ( messages.to_id = 1 -- ID to compare with (logged in users's ID) OR messages.from_id = 1 -- ID to compare with (logged in users's ID) ) GROUP BY CONCAT( LEAST(messages.to_id, messages.from_id), '.', GREATEST(messages.to_id, messages.from_id) ) ) as conversations WHERE id = conversations.lastid ORDER BY messages.created_at DESC /* Another way using join */ SELECT * FROM messages m INNER JOIN ( SELECT MAX(id) as lastid FROM messages WHERE ( messages.to = 1 -- ID to compare with (logged in users's ID) OR messages.from_id = 1 -- ID to compare with (logged in users's ID) ) GROUP BY CONCAT( LEAST(messages.to_id, messages.from_id), '.', GREATEST(messages.to_id, messages.from_id) ) ) conversations ON conversations.lastid = m.id ORDER BY m.created_at DESC