Dealing with Cassandra Timestamp
问题 Recently I have started working on cassandra and I have some issues dealing with cassandra timestamp using cql and Java. Below is my sample cassandra table schema. CREATE TABLE emp ( empid int, create_date timestamp, deptid int, PRIMARY KEY (empid, create_date) ) Here are my questions below: 1) Actually I need only date(I am not worried about time), In my table schema I have used timestamp datatype, Is there any datatype like date to store only date instead timestamp. 2) If there is no