Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CosmosDB + group by

I need to use "GROUP BY" clause on Azure Data Explorer but I think it is unsupported.

Someone have any idea to solve or avoid group by?

Best regards,

like image 883
pefs Avatar asked Oct 19 '25 09:10

pefs


1 Answers

Finally, Azure Cosmos DB currently supports GROUP BY in .NET SDK 3.3 or later. Support for other language SDK's and the Azure Portal is not currently available but is planned.

<group_by_clause> ::= GROUP BY <scalar_expression_list>

<scalar_expression_list> ::=
          <scalar_expression>
        | <scalar_expression_list>, <scalar_expression>

enter image description here

like image 78
Sajeetharan Avatar answered Oct 21 '25 23:10

Sajeetharan