aquari89
aquari89

Reputation: 31

Azure Table Storage Explorer Query

I would like to look at the data collected recently. I've written some query statements, but they were shown in the order of the first data collected.

I do not know how to write a query to see the data in the order in which it was recently collected. Please let me know if you have any related tips.

enter image description here

Upvotes: 2

Views: 3146

Answers (2)

tRuEsAtM
tRuEsAtM

Reputation: 3678

You can click on Timestamp column and view the data in ascending or descending order as there is no support for Order by queries in Azure Storage Explorer.

Upvotes: 2

Amor
Amor

Reputation: 8499

I do not know how to write a query to see the data in the order in which it was recently collected.

Based on the official document, the order by query is not support by Azure Table Service currently. The query result is default order by PartitionKey and RowKey.

Upvotes: 1

Related Questions