mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
20 lines
333 B
Text
20 lines
333 B
Text
UPDATE
|
|
`messages`
|
|
SET
|
|
`unread` = 0
|
|
WHERE
|
|
(`id` > ?)
|
|
AND (
|
|
(
|
|
(`sender_type` = ?)
|
|
AND (`recipient_type` = ?)
|
|
AND (`sender_id` = ?)
|
|
AND (`recipient_id` = ?)
|
|
)
|
|
OR (
|
|
(`sender_type` = ?)
|
|
AND (`recipient_type` = ?)
|
|
AND (`sender_id` = ?)
|
|
AND (`recipient_id` = ?)
|
|
)
|
|
)
|