I have the following document in Couch DB and I want to write a query to retrieve all students who's program = "MSc". How do I do that?
Document
{
"_id": "students",
"_rev": "10-f1c709ee8be06faaf7065e785dd72f2b",
"Students": [
{
"StudentId": "2015156",
"Name": "Trinity",
"Age": "32",
"Program": "MSc"
},
{
"StudentId": "2015157",
"Name": "Thomas Anderson",
"Age": "34",
"Program": "MSc"
}
]
}