mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
27 lines
388 B
Text
27 lines
388 B
Text
SELECT
|
|
*
|
|
FROM
|
|
`messages`
|
|
WHERE
|
|
(`deleted` = 0)
|
|
AND (`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` = ?)
|
|
)
|
|
)
|
|
ORDER BY
|
|
`created` DESC
|
|
LIMIT
|
|
?
|
|
OFFSET
|
|
?
|