Created
July 24, 2013 22:05
-
-
Save nikoncode/6075045 to your computer and use it in GitHub Desktop.
Запрос для получения информации о пользователе по должности more to more
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
| SELECT users.*, COUNT(*) AS c | |
| FROM users, work, userwork | |
| WHERE userwork.wid = work.id AND userwork.uid = users.id | |
| AND work.name IN ('%IMPLODED ARRAY%') | |
| GROUP BY users.id | |
| HAVING c = %COUNT OF %IMPLODED ARRAY%% |
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
| SELECT users.*, COUNT(*) AS c | |
| FROM users, work, userwork | |
| WHERE userwork.wid = work.id AND userwork.uid = users.id | |
| AND work.name IN ('Мент','Пожарный') | |
| GROUP BY users.id | |
| HAVING c = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment