1
1
Fork 0
mirror of https://github.com/openvk/openvk synced 2025-05-02 23:26:45 +03:00
openvk/Web/Models/sql/get-subscriptions-user.tsql

6 lines
No EOL
372 B
Text

(SELECT DISTINCT(target) AS __id FROM
(SELECT follower FROM subscriptions WHERE target=? AND model="openvk\\Web\\Models\\Entities\\User") u0
RIGHT JOIN
(SELECT target FROM subscriptions WHERE follower=? AND model="openvk\\Web\\Models\\Entities\\User") u1
ON u0.follower = u1.target WHERE u0.follower IS NULL) u2
INNER JOIN profiles ON profiles.id = u2.__id