Reputation: 11304
I am trying to run complex query for Azure Table where I want to count number of rows for all deviceID
for specific dateiot
and timeiot
? Is this possible?
Upvotes: 0
Views: 117
Reputation: 136196
Your query would be something like:
PartitionKey eq 'aaaa' and dateiot eq 'bbbb' and deviceID eq 'cccc' and timeiot eq 'dddd'
2 things though:
Upvotes: 1