Created
July 3, 2015 07:55
-
-
Save chbatey/0d5c076c8c3d864cd51e 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 TABLE daily_aggregate_precip ( | |
wsid text, | |
year int, | |
month int, | |
day int, | |
precipitation counter, | |
PRIMARY KEY ((wsid), year, month, day) | |
) WITH CLUSTERING ORDER BY (year DESC, month DESC, day DESC); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment