首先,我是Cassandra或nosql的新手。我有一个列系列,其中包含几个主键和一些我想查询的列。
create table destination (
destid int,
destDesc text,
phone text,
destphone text,
primary key(destid));
create index on destination(destphone));
所以当我查询
时 selecy * from destination where destphone='1234567899';
它返回0行。
我想带来的另一件事是我在表格中插入了所有数据后创建了一个索引。好吗?