Last active
August 15, 2019 18:26
-
-
Save chris001177/f0731be49b39f2f426c5c75e2c550035 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 KEYSPACE = test | |
WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 }; | |
CREATE TABLE emps ( | |
empid text PRIMARY KEY, | |
first_name text, | |
last_name text, | |
age int | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment