cosmos db sql query with non alphanumeric field name

强颜欢笑 提交于 2019-12-17 21:10:05

问题


My data structure in cosmosdb is next

   {
      "_id": {
      "$oid": "554f7dc4e4b03c257a33f75c"
      },
      .................
   }

and I need to sort collection by $oid field. How should I form my sql query?

Normal query SELECT TOP 10 * FROM collection c ORDER BY c._id.filedname not works if fieldname starts with $ like $oid.

I am using query explorer from azure portal.


回答1:


To use a special character, like $, you need to use bracket notation:

SELECT c._id FROM c
order by c._id["$oid"]

You can do this with each property in the hierarchy, so the following also works:

SELECT c._id FROM c
order by c["_id"]["$oid"]


来源:https://stackoverflow.com/questions/46215137/cosmos-db-sql-query-with-non-alphanumeric-field-name

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!