Let's say I have this JSON array:
[{
"Field": "1"
}, {
"Field": "2"
}, {
"Field": "3"
}]
And I use that in an OpenJSON
query in SQL Server.
Will the query result set be always the same order as the array:
Field
1
2
3
Or will it be random just like any normal Select query without an order by?