DEV Community

Discussion on: Understanding Indexing in Azure Cosmos DB

Collapse
 
nomada2 profile image
nomada2

Hi Will, can you help me with this scenario?

i want to order some string with numbers, but first i want to order all number as numbers (0..9) not as string

i get
(
1
10
100
1002
2
3
30
31
4
)

i want
(
1
2
3
4
10
100
101
)
thanks