Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 408 Bytes

cassandra.md

File metadata and controls

30 lines (23 loc) · 408 Bytes

cassandra

cql

query

-- select
select * from my_table;

-- count
select count(*) from my_table;

create table

-- one primary key
CREATE table tsp_moter_speed_torque (
      sample_ts timestamp,
      _id varchar PRIMARY KEY,
);

-- multiple primary key
CREATE table tsp_moter_speed_torque (
      sample_ts timestamp,
      _id varchar,
      PRIMARY KEY(sample_ts,_id)
);