openvk/Web/Models/sql/get-messages.tsql
2020-06-07 19:04:43 +03:00

25 lines
No EOL
378 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
?