OrientDB创建GroupBy表

时间:2017-08-28 12:58:03

标签: orientdb orientdb2.2 orientdb-2.1

例如我有下表

[id, V1, V2]
[A , 1 , 5]
[A , 2 , 4]
[A , 3 , 3]
[A , 4 , 2]
[B , 9 , 6]
[B , 8 , 7]
[B , 7 , 8]
[B , 6 , 9]

我想创建具有以下结果的查询

[id,     V1`   ,    V2`  ] ]
[A , [1,2,3,4] , [5,4,3,2] ]
[B , [9,8,7,6] , [6,7,8,9] ]

OR

[id, min , max ]
[A , [1] , [5] ]
[B , [6] , [9] ]

如何构建此查询? 我已经尝试了很多选择,但失败了。

任何帮助都会得到满足。 提前致谢

1 个答案:

答案 0 :(得分:1)

试试这个:

select id, $a.V1 as V1, $a.V2 as V2 from <class name>
let $a = (select from <class name> where $parent.current.id = id)
group by id

希望有所帮助

此致