Mysql
 sql >> Database >  >> RDS >> Mysql

mySQL Raggruppa per nome membro

Penso che questo sia quello che stai cercando.

SELECT messages.* 
  FROM 
  (SELECT MAX(lastseen) AS lastseen,IF ('Tom' = `from`,`to`,`from`) as otheruser FROM messages
    WHERE 'Tom' IN (`from`,`to`) GROUP BY otheruser
   )
AS latest INNER JOIN messages ON latest.lastseen = messages.lastseen
                             AND (('Tom' = messages.from AND latest.otheruser = messages.to)
                                 OR
                                 ('Tom' = messages.to AND latest.otheruser = messages.from))
ORDER BY messages.lastseen
DESC,`read`='no' limit 10

sostituisci semplicemente "Tom" con la tua variabile

Questo restituirà gli ultimi 10 utenti che hanno inviato messaggi a "Tom" o "Tom" a cui hanno inviato messaggi.