MongoDB聚合SQL Union和SQL Exists子句 [英] MongoDB Aggregation SQL Union and SQL Exists like clause

查看:142
本文介绍了MongoDB聚合SQL Union和SQL Exists子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想对这样的数据进行MongoDB聚合查询:

I would like to make a MongoDB aggregation Query on data like this :

集合A

{
_id : 1,
Active : true,
hasQuery : false,
Running : false,
}

{
_id : 2,
Active : true,
hasQuery : true,
Running : false,
}

{
_id : 3,
Active : true,
hasQuery : false,
Running : true,
}

{
_id : 4,
Active : true,
hasQuery : true,
Running : true,
}

{
_id : 5,
Active : false,
hasQuery : false,
Running : false,
}

{
_id : 6,
Active : false,
hasQuery : false,
Running : true,
}

此JSON数据可由这样的表体系结构表示 表A

This JSON data could be represented by a table architechture like this Table A

 PrimaryKey   |    Active    |    hasQuery    |       Running


  1           |     true     |    false       |        false


  2           |     true     |    true        |        false


  3           |     true     |    false       |        true


  4           |     true     |     true       |        true


  5           |     false    |     false      |        false


  6           |    false     |     false      |        true

如果我在表格上应用以下查询:

select * from A where Exists(Select * from A where A.Running=true and A.hasQuery=true) and A.Running=false and A.hasQuery=false and A.Active=true

union

select * from A where not Exists(Select * from A where A.Running=true and A.hasQuery=true) and A.Running=false and A.Active=true

我得到了这些结果: 在MongoDB中:

I get theses results : In MongoDB :

{
_id : 1,
Active : true,
hasQuery : false,
Running : false,
}

{
_id : 2,
Active : true,
hasQuery : true,
Running : false,
}

{
_id : 5,
Active : false,
hasQuery : false,
Running : false,
}

在SQL中:

 PrimaryKey   |    Active    |    hasQuery    |       Running


  1           |     true     |    false       |        false


  2           |     true     |    true        |        false


  5           |     false    |     false      |        false

如何使用mongoDB聚合做同样的事情?

How to do the same thing with mongoDB aggregation ?

推荐答案

我设法使用该代码:

db.test.aggregate(
    {
         $project:
           {
               RunningActiveRecordHasQuery:
               {
                 $cond: { if: { $and: [ "$Running", "$hasQuery",  "$Active"] }, then: true, else: false }
               }           
           }
      }
      ,
      {
        $match: {
            RunningActiveRecordHasQuery :  true
        }    
      },
      function (err, results) {
        if (!err ) {
          console.log (results.result);
          match={}
          if (results.length>0) {
              match.AnyNotRunningActiveRecordHavingNoQuery=true;
          } else {
            match.AnyActiveRecordNotRunning=true;
          }
          db.test.aggregate(
          {
               $project:
                 {
                   _id: 1,
                     Running : 1,
                     Active : 1,
                     hasQuery : 1,
                     AnyNotRunningActiveRecordHavingNoQuery:
                     {
                       $cond: { if: { $and: [ {$eq: [ "$Running", false ] }, {$eq : [ "$hasQuery", false]},  "$Active"] }, then: true, else: false }
                     },
                     AnyActiveRecordNotRunning:
                     {
                       $cond: { if: { $and: [ {$eq: [ "$Running", false ] }, "$Active"] }, then: true, else: false }
                     }             
                 }
            }
            ,
            {
              $match: match  
            },
            function (err, docs) {

            }

          )
        }
      } 

)

它用于聚合以使事情正常运行.

It uses to aggregation to make things working.

这篇关于MongoDB聚合SQL Union和SQL Exists子句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆