Cassandra (一)












关于联合索引是否能起作用?使用where一定要带上主索引a!!!!否则不生效!!!!

create keyspace patient with replication = {'class':'SimpleStrategy','replication_factor: 1'} create table patient.exam( patient_id int, doctor text static, start_date timeuuid, detail text, primary key(patient_id,start_date)); insert into patient.exam(patient_id,doctor) values(123,'JOHN M'); insert into patient.exam( patient_id, start_date, detail ) values(123,maxTimeuuid('1999-01-01 00:05+0000'),'first exam') select toDate(start_date) from patient.exam; ## static 绑定主id












浙公网安备 33010602011771号