我正在尝试创建您在 android 手机上看到的 SMS 消息。
在我的 MySQL 数据库中,我有一个表用于跟踪消息,就像来自电话的 SMS。
该表是
id (the message id)
from_member_id (the id of the member who sent this message)
to_member_id (the id of the member who the message was sent to)
date sent (the date it was sent)
active (if this message is deleted or active)
text (the text)
当用户登录时,他们需要下载他们发送或发送到的所有消息。
我可以创建一个 sql 语句,基本上说“给我所有我的 id 等于 from 或 to id 的记录”,但我还想做的是在我的 android 上显示文本时以易于处理的方式对其进行排序应用程序。
基本上我想对它进行排序,使其像排序一样,以便不是你的 id (将是from
or to
)是它的排序依据。此外,它应该按日期或最近发送或接收的内容排序。
因此,例如,如果我的 ID 是 5,那么我想接收类似的数据
From To Date
5 6 july 28
6 5 july 7
6 5 july 7
5 2 july 26
5 2 july 26
2 5 july 26
因此,它也按日期排序,其中用于比较的日期记录将是每组中最新的。
我不确定我的解释是否正确,所以如果您需要我更具体一些,请告诉我。
谢谢。