I've the "TEST" class with the following properties.
I was trying to do Groupby on "createdDate" by minute and then accumulate 
on "size" to return "totalSize" by minute.

 "Test" - class
 "createdDate" -  DATETIME
 "size" -  INTEGER


Wanted to do something like as follows. 
SELECT MINUTE(createdDate) as byMInute, sum(size) AS totalSize FROM Test 
GROUP BY byMInute;

Seems like MINUTE is not supported, tried format and it didn't work too.

Appreciated any help.
Thanks 

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to