如何在Cratedb

时间:2017-03-13 19:06:45

标签: sql cratedb

例如,我有以下脚本:

CREATE TABLE test 
(
     items  array(string)
)

INSERT INTO test (items) VALUES (array['a', 'b']);
INSERT INTO test (items) VALUES (array['a'])

是否可以计算表格中的项目数量?与ES术语聚合类似的东西。

我期待这样的事情:

SELECT COUNT(\*), items 
FROM test 
GROUP BY items;

但这会引发错误

  

不能GROUP BY'项':无效的数据类型'string_array'

1 个答案:

答案 0 :(得分:0)

从CrateDB 1.0开始,不支持此功能。请参阅this GH issuethis