Skip to content

Instantly share code, notes, and snippets.

@chris001177
Last active August 15, 2019 18:26
Show Gist options
  • Save chris001177/f0731be49b39f2f426c5c75e2c550035 to your computer and use it in GitHub Desktop.
Save chris001177/f0731be49b39f2f426c5c75e2c550035 to your computer and use it in GitHub Desktop.
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