9

假设我在 DocumentDB 中有 3 个像这样的对象。

这是课堂记录。

现在我想获取一个名为 Sunny 的学生所在的所有 ID。

{
  "id": "111",
  "class": 1,
  "students": [
    {
      "name": "sunny"
    },
    {
      "name": "pinki"
    },
    {
      "name": "bobby"
    },
    {
      "name": "lucky"
    }
  ]
}

{
  "id": "222",
  "class": 2,
  "students": [
    {
      "name": "pinki"
    },
    {
      "name": "sunny"
    },
    {
      "name": "bobby"
    }
  ]
}

{
  "id": "333",
  "class": 3,
  "students": [
    {
      "name": "pinki"
    },
    {
      "name": "lucky"
    },
    {
      "name": "bobby"
    }
  ]
}

得到结果的查询是什么?

4

1 回答 1

9

您可以使用 DocumentDBJOIN在具有数组元素的文档上创建叉积。

例如,以下查询在文档上创建了一个叉积,其 students属性可在 上查询students.name

select doc.id
from doc
join students in doc.students
where students.name = 'sunny'

返回以下数据集:

[{
    id: 111
}, {
    id: 222
}]

参考:http ://azure.microsoft.com/en-us/documentation/articles/documentdb-sql-query/#joins

于 2015-03-11T22:45:49.560 回答