Skip to content

Instantly share code, notes, and snippets.

@andrewstevenson
Created September 8, 2016 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewstevenson/ee39dd150cb92af2382cccb747fdc5a8 to your computer and use it in GitHub Desktop.
Save andrewstevenson/ee39dd150cb92af2382cccb747fdc5a8 to your computer and use it in GitHub Desktop.
CREATE KEYSPACE demo WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor' : 3};
use demo;
create table orders (id int, created varchar, product varchar, qty int, price float, PRIMARY KEY (id, created))
WITH CLUSTERING ORDER BY (created asc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment