Cassandra 3.11.4 CQL GROUP BY无法正常工作

时间:2019-05-21 15:23:57

标签: group-by cassandra cql cassandra-3.0 cqlsh

我可能缺少一些非常基本的东西,或者有些非常错误的东西; 我正在使用Apache Cassandra 3.11.4。版本详细信息如下:

Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 3.7.0 | CQL spec 3.4.2 | Native protocol v4]

我有下表,我想获得个人公民身份的计数。

CREATE TABLE population.residents (
residentId bigint,
name varchar,
office varchar,
dob date,
citizen text,
PRIMARY KEY((residentId), dob)
);

CREATE MATERIALIZED VIEW population.residents_citizen AS
    SELECT citizen, dob, residentid, name, office
    FROM population.residents
    WHERE citizen IS NOT NULL AND residentid IS NOT NULL AND dob IS NOT NULL
    PRIMARY KEY (citizen, dob, residentid);

尝试查询时出现以下错误:

cqlsh> select citizen, count(residentId) from population.residents_citizen GROUP BY citizen;
SyntaxException: line 1:68 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 
GROUP BY citizen, residentId;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 GROUP BY residentId, citizen;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 GROUP BY citizen, dob, residentId;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)

我的数据如下所示:

cqlsh> select * from population.residents;

 residentid | dob        | citizen | name              | office
------------+------------+---------+-------------------+----------------------------------------
      25966 | 2019-01-04 |       N |        Carl Sykes |              Leo Cras Vehicula Limited
     921412 | 2018-12-13 |       N |    Brady Harrison |          Nulla In Tincidunt Consulting
     521367 | 2019-11-18 |       Y |      Aaron Norton |      Pharetra Sed Hendrerit Associates
     843096 | 2020-02-03 |       N |      Preston Leon |                        A Felis Limited
     460162 | 2019-01-17 |       N |      Neville Good |                   Odio Aliquam Company
     187360 | 2018-12-09 |       Y |     Emery Pittman |                Arcu Ac Orci Foundation

真的很感谢一些建议!

0 个答案:

没有答案