Skip to content

Commit c2d9078

Browse files
committed
Kusto-phase2: Update release for top-hitters operator
1 parent 9c3be16 commit c2d9078

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/Parsers/Kusto/KQL_ReleaseNote.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,27 @@
22
# October 25, 2022
33
## operator
44
- [count](https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/countoperator)
5-
65
`Customers | count;`
76
`Customers | where Age< 30 | count;`
87
`Customers | where Age< 30 | limit 2 | count;`
98
`Customers | where Age< 30 | limit 2 | count | project Count;`
109

10+
- [top](https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/topoperator)
11+
`Customers | top 3 by Age;`
12+
`Customers | top 3 by Age desc;`
13+
`Customers | top 3 by Age asc | order by FirstName;`
14+
`Customers | top 3 by FirstName desc nulls first;`
15+
`Customers | top 3 by FirstName desc nulls last;`
16+
`Customers | top 3 by Age | top 2 by FirstName;`
17+
18+
- [top-hitters](https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/tophittersoperator)
19+
`Customers | top-hitters a = 2 of Age by extra;`
20+
`Customers | top-hitters 2 of Age;`
21+
`Customers | top-hitters 2 of Age by extra | top-hitters 2 of Age | order by Age;`
22+
`Customers | top-hitters 2 of Age by extra | where Age > 30;`
23+
`Customers | top-hitters 2 of Age by extra | where approximate_sum_extra < 200;`
24+
`Customers | top-hitters 2 of Age | where approximate_count_Age > 2;`
25+
1126

1227
# October 9, 2022
1328

0 commit comments

Comments
 (0)