Sign in
apache
/
cassandra
/
452be1f363861025df6ca0ddf90a893058d4feea
/
.
/
doc
/
modules
/
cassandra
/
examples
/
CQL
/
create-table-shopping-cart.cql
blob: e7d32035faf3ed87df44013bafb6266ae5657b7a [
file
] [
log
] [
blame
]
CREATE TABLE IF NOT EXISTS store
.
shopping_cart
(
userid text PRIMARY KEY
,
item_count
int
,
last_update_timestamp timestamp
);