如何通过用户定义类型的字段过滤cassandra查询

时间:2015-11-21 05:39:30

标签: cassandra user-defined-types frozen-columns frozen

如何按用户定义的类型字段过滤cassandra查询? 我想在我的cassandra数据库中创建人员表,所以我在我的cassandra数据库中创建了这个用户定义的类型。

    create type fullname ( firstname text, lastname text );

我也有这张桌子。

    create table people ( id UUID primary key, name frozen <fullname> );

我需要过滤我的查询以了解姓jolie的所有人。 我该如何从这个表中查询。 以及如何在cassandra中过滤和查询? 我知道我可以删除fullname类型并将firstname和lastname添加到主表,但它是我想要做的样本。我必须有全名类型。

0 个答案:

没有答案