Created
June 6, 2014 15:30
-
-
Save soandos/b7cb0a97d38ef4b20298 to your computer and use it in GitHub Desktop.
Get true referral count
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 | |
| substring(source_name, 1, 14) as sourceNum, | |
| count(*) as Number | |
| from | |
| data.mcomm | |
| where | |
| source_type = 'Tell A Friend' | |
| group by substring(source_name, 1, 14) | |
| having count(*) > 1 | |
| order by count(*); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment