This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I. | |
1) Выборки пользователей, у которых количество постов больше, чем у пользователя их пригласившего. | |
SELECT u1.* | |
FROM users u1 | |
WHERE u1.posts_qty > | |
(SELECT posts_qty | |
FROM users u2 | |
WHERE u2.id = u1.invited_by_user_id); | |
This file has been truncated, but you can view the full file.