我可能遗漏了一些非常基本的东西,或者有一些非常错误的东西;我正在使用 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
非常感谢您的建议!
暂无答案!
目前还没有任何答案,快来回答吧!