-3
請幫我找到一個解決方案想法需要檢索兩個用戶之間舊的聊天記錄
表名=個人聊天
列::
ID, OppenentId, message, userid, posteddate
這是用於存儲我的消息的桌面設計,請給我想法如何接收消息以顯示類似於聊天嗨故事
由於
請幫我找到一個解決方案想法需要檢索兩個用戶之間舊的聊天記錄
表名=個人聊天
列::
ID, OppenentId, message, userid, posteddate
這是用於存儲我的消息的桌面設計,請給我想法如何接收消息以顯示類似於聊天嗨故事
由於
select message
from [individual chat]
where userid=xxx
order by id desc
選擇用戶ID,OpponentID,從IndividualChat其中userid = 1和OpponentID = 2或用戶ID = 2和OpponentID = 1爲了通過ID降序
這是作業消息? –