Created
March 20, 2015 11:47
-
-
Save daynebatten/1dcf3d81455d9bc9ff90 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
| create temp table | |
| fullvoters | |
| as select | |
| *, | |
| random() as split | |
| from | |
| voters | |
| where | |
| len(first_name) > 1 | |
| and len(middle_name) > 1 | |
| and gender in ('M', 'F'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment