所以我有一个现有应用程序的消息表:
CREATE TABLE `message` (
`id` int(11) NOT NULL,
`fromUserId` int(11) DEFAULT NULL,
`fromDeleted` tinyint(1) DEFAULT NULL,
`fromArchived` tinyint(1) DEFAULT NULL,
`toUserId` int(11) DEFAULT NULL,
`toDeleted` tinyint(1) DEFAULT NULL,
`toArchived` tinyint(1) DEFAULT NULL,
`message` mediumtext COLLATE utf8mb4_unicode_ci,
`sentTime` datetime DEFAULT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`relatesTo` int(11) DEFAULT NULL,
`subject` mediumtext COLLATE utf8mb4_unicode_ci,
`viewed` tinyint(1) DEFAULT NULL,
`hasConversation` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
我正在尝试编写类似于 Google Inbox 的内容。具体来说,这意味着消息被分组到对话中。即消息 A(两周前发送)和消息 D + Z(昨天发送)需要显示为一个组。
目前,我正在轮询数据库两次,一次是针对所有没有答案的消息(即where hasConversation = NULL
),第二次是获取所有对话项。
然后在PHP
我将消息与发送它们的年/月相关联,或者如果它们属于对话,则将它们与最后一个回复年/月相关联。
Message Z "Re:Re: Hello" (sent 2018-02-08 15:00)
-- Message D "Re: Hello" (sent 2018-02-03 10:00)
-- Message A "Hallo" (sent 2018-02-01 19:30)
我希望你能明白。
我将如何在 SQL 查询中执行此操作?当您考虑“分页”或无限滚动时,棘手的部分就出现了。为此,要工作,我需要设置 aLIMIT
和OFFSET
. 但是我目前这样做的方式使这种效率低下。
这是获取数据的查询(使用 Yii2)的示例(对于收件箱):
$messages = Message::find()
->with(['toUser', 'fromUser'])
->andWhere([
'toUserId' => Access::userId(),
'relatesTo' => null,
'hasConversation' => null,
'toArchived' => null,
'toDeleted' => null,
])
->andWhere(['not', ['sentTime' => null]])
->orderBy(['sentTime' => SORT_DESC])
->all();
$conversations = Message::find()
->with(['toUser', 'fromUser'])
->andWhere(['OR',
['toUserId' => Access::userId(), 'toDeleted' => null, 'toArchived' => null],
['fromUserId' => Access::userId(), 'fromDeleted' => null, 'fromArchived' => null],
])
->andWhere(['OR',
['IS NOT', 'relatesTo', null],
['IS NOT', 'hasConversation', null],
])
->orderBy(['relatesTo' => SORT_DESC, 'sentTime' => SORT_DESC])
->all();