只要在加一张表就可以了
消息表
user肯定是一开始就有了的
然后消息表里
有这几个基本字段就可以了
id userid(消息所属人) sent(消息发送人)title(消息标题) content(消息内容) statu(消息状态)
你要发几个人就在消息表里加几条记录就可以了
以后查某个人的消息就是
select × from ?? where userid=???
要查那个发的就是
select × from ?? where sent=???
要查是不是有新消息状态就是(如果是查某人的)
select × from ?? where statu=???(and userid=???)