Я хотел бы посчитать количество строк в моем запросе. Возможно ли это на языке запросов Azure Analytics? И как мне это сделать?
requests
| where name == "MyName"
| summarize by tostring(customDimensions.myCustomProperty)
Результат:
customDimensions_myCustomProperty
item1
item2
item3
item4
В SQL я бы просто сделал это:
select count(distinct(customDimensions.myCustomProperty)
from requests
where name == "MyName"