Created
June 25, 2013 14:20
-
-
Save jsevellec/5858827 to your computer and use it in GitHub Desktop.
simple CQL3 script
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 myTable( | |
| id varchar, | |
| value varchar, | |
| PRIMARY KEY(id)); | |
| INSERT INTO myTable(id, value) values('myKey01','myValue01'); | |
| INSERT INTO myTable(id, value) values('myKey02','myValue02'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment