Created
March 3, 2017 22:00
-
-
Save rex-lin/3b69b582b16cbc68a9dbbacfea3d5e8a to your computer and use it in GitHub Desktop.
Moderation Performance
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 date_created, moderator, sum(case when action_taken = 'FLIPAGRAM_MODERATION_APPROVED' then 1 else 0 end) as approved_count, | |
| sum(case when action_taken = 'FLIPAGRAM_MODERATION_NOT_APPROVED' then 1 else 0 end) as not_approved_count | |
| from pa.vw_interim_moderator_action | |
| group by 1,2 | |
| order by 1,2 asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment