mirror of
https://github.com/openvk/openvk
synced 2024-11-11 17:49:37 +03:00
db3789bef8
Search: Kind of fix by adding more shitcode xdddddd Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com>
20 lines
No EOL
305 B
Text
20 lines
No EOL
305 B
Text
SELECT COUNT(id) AS cnt FROM
|
|
(
|
|
(
|
|
SELECT
|
|
recipient_id AS id
|
|
FROM messages
|
|
WHERE
|
|
sender_id = ?
|
|
AND
|
|
sender_type = ?
|
|
) UNION (
|
|
SELECT
|
|
sender_id AS id
|
|
FROM messages
|
|
WHERE
|
|
recipient_id = ?
|
|
AND
|
|
recipient_type = ?
|
|
)
|
|
) dt |