Last active
October 9, 2015 15:00
-
-
Save atopal/7c47e7f4468843fb3cdc to your computer and use it in GitHub Desktop.
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 DISTINCT `questions_answer`.`creator_id` | |
FROM `questions_answer` | |
JOIN `users_profile` ON `users_profile`.`user_id` = `questions_answer`.`creator_id` | |
WHERE `questions_answer`.`created` BETWEEN '2015-07-01 0' AND '2015-10-01 0' | |
AND `users_profile`.`first_answer_email_sent` = 1 | |
AND | |
`questions_answer`.`creator_id` NOT IN | |
(SELECT DISTINCT `auth_user`.`id` | |
FROM `questions_answer` | |
JOIN `auth_user` ON `auth_user`.`id` = `questions_answer`.`creator_id` | |
JOIN `users_profile` ON `users_profile`.`user_id` = `questions_answer`.`creator_id` | |
WHERE `questions_answer`.`created` BETWEEN '2010-01-01 0' AND '2015-07-01 0' | |
AND `users_profile`.`first_answer_email_sent` = 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment