Last active
August 26, 2016 10:44
-
-
Save atopal/21bffa9a7f8ef6a8d198953106b4a95f to your computer and use it in GitHub Desktop.
Number of accounts with Pesona and Github auth
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 count(*) | |
FROM | |
(SELECT * | |
FROM `socialaccount_socialaccount` | |
WHERE `socialaccount_socialaccount`.`provider`="persona") A | |
INNER JOIN | |
(SELECT * | |
FROM `socialaccount_socialaccount` | |
WHERE `socialaccount_socialaccount`.`provider`="github") B | |
ON A.`user_id` = B.`user_id` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment