Messaging System with PHP/MySQL

前端 未结 3 1832
囚心锁ツ
囚心锁ツ 2021-01-21 11:46

Hi I\'m trying to make a messaging system with php and mysql.

The mysql table is simple: id sender receiver text timestamp

I\'m trying to make the messaging some

3条回答
  •  深忆病人
    2021-01-21 12:19

    UPDAte: I'm not sure if it works perfect:

    SELECT * FROM messages 
    WHERE receiver = 13
    GROUP BY receiver,sender 
    ORDER BY timestamp DESC
    LIMIT 1
    
    UNION ALL
    SELECT * FROM messages 
    WHERE sender = 13
    GROUP BY receiver,sender 
    ORDER BY timestamp DESC
    LIMIT 1
    

    to reverse the order:

    ORDER BY timestamp DESC
    

提交回复
热议问题