openvk/Web/Models/sql/get-messages.tsql

25 lines
378 B
Text
Raw Normal View History

2020-06-07 19:04:43 +03:00
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
?