我如何创建一个与此类SQL查询等效的视图?
SELECT * FROM bucket WHERE(uid ='$ uid'AND accepted ='Y')OR(uid ='$ uid'和authorid ='$ logginid')
我的数据以这种方式存储:
{
"id": 9476183,
"authorid": 85490,
"content": "some text here",
"uid": 41,
"accepted": "Y",
"time": "2014-12-09 10:44:01",
"type": "testimonial"
}
答案 0 :(得分:2)
function(doc) {
if (doc.accepted == 'Y') {
emit(doc.uid, null);
}
emit([doc.uid, doc.authorid], null);
}
一个请求就足够了。您可以使用带有参数keys:[[uid, authorid], uid]
的POST来点击@Simon(上面转载)所写的视图。
有关模式详情,请参阅http://docs.couchdb.org/en/latest/api/ddoc/views.html#post--db-_design-ddoc-_view-view。
答案 1 :(得分:0)
视图可能如下所示:
function(doc) {
if (doc.accepted == 'Y') {
emit(doc.uid, null);
}
emit([doc.uid, doc.authorid], null);
}
您首先会使用key=$uid
查询它。如果没有匹配项,您可以使用key=[$uid,$loginid]
进行查询。