Files
spring-cloud-dataflow-samples/streaming/http-to-cassandra/create-table.cql
2015-12-15 16:56:16 -08:00

10 lines
201 B
SQL

DROP TABLE IF EXISTS book;
CREATE TABLE book (
isbn uuid PRIMARY KEY,
author text,
instock boolean,
pages int,
saledate timestamp,
title text
);