[mongodb] mongodb: how to compare String from document to the String constructed by expression in aggregation pipeline

 

[Questioin]

I have a trouble with creating a view in MongoDB. I'm just starting with Mongo, so the question could look pretty silly.

I have the following document:

{ 
    "_id" : NumberInt(12213054), 
    ... 
    "_dt" : {
        "_doc" : "time", 
        "time" : "01:30", 
        "date" : "04/02/18", 
        "tz" : "CET", 
        "tzoffset" : NumberInt(3600), 
        "uts" : NumberInt(1517704200)
    }, 
    ...
}

I'm trying to create a view for documents that have a date '04/02/18'. The type of "_dt.date" field is String. And I'm trying to compare it using $eq operator.

I have the following query to select the data:

{$match: {
    "_dt.date": {
        $eq: { 
            $concat: [  
                {$dateToString: {
                    format: "%d/%m/",
                    date: new Date("2018-02-04")
                }},
                {$substr: [
                    {$year : new Date("2018-02-04")},
                    2,
                    2
                ]}
            ]
        }
    }
}
}

But after I execute the query the result is empty.

The date string constructed by the subquery seems to be correct:

db.matches.aggregate({ $project: { date:
{ 
            $concat: [
                {$dateToString: {
                    format: "%d/%m/",
                    date: new Date("2018-02-04")
                }},
                {$substr: [
                    {$year : new Date("2018-02-08")},
                    2,
                    2
                ]}
            ]
        }
}
}
)

Output is:

{ 
    "_id" : NumberInt(12213054), 
    "date" : "04/02/18"
}

Does anyone have any idea why the first query doesn't work?

 

[Answer]

 

$match by design compares a field against a constant value with regular query operators.

For comparing two fields in mongodb you've to use $match with $expr with aggregation query operators in 3.6.

Compare query operators vs aggregation comparison operators.

{"$match":{
  "$expr":{
    "$eq":[
      "$_dt.date", 
      {"$concat":[
        {"$dateToString":{"format":"%d/%m/","date":new Date("2018-02-04")}},
        {"$substr":[{"$year":new Date("2018-02-04")},2,2]}
      ]}
  }
}}

Or

You can simply pass the date string created on client side and compare directly

{"$match":{"_dt.date":"04/02/18"}}

 

 

[출처] https://stackoverflow.com/questions/48727055/mongodb-how-to-compare-string-from-document-to-the-string-constructed-by-expres

 

 

[mongodb] mongodb: how to compare String from document to the String constructed by expression in aggregation pipeline

 

[Questioin]

I have a trouble with creating a view in MongoDB. I'm just starting with Mongo, so the question could look pretty silly.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

I have the following document:

{ 
    "_id" : NumberInt(12213054), 
    ... 
    "_dt" : {
        "_doc" : "time", 
        "time" : "01:30", 
        "date" : "04/02/18", 
        "tz" : "CET", 
        "tzoffset" : NumberInt(3600), 
        "uts" : NumberInt(1517704200)
    }, 
    ...
}

I'm trying to create a view for documents that have a date '04/02/18'. The type of "_dt.date" field is String. And I'm trying to compare it using $eq operator.

I have the following query to select the data:

{$match: {
    "_dt.date": {
        $eq: { 
            $concat: [  
                {$dateToString: {
                    format: "%d/%m/",
                    date: new Date("2018-02-04")
                }},
                {$substr: [
                    {$year : new Date("2018-02-04")},
                    2,
                    2
                ]}
            ]
        }
    }
}
}

But after I execute the query the result is empty.

The date string constructed by the subquery seems to be correct:

db.matches.aggregate({ $project: { date:
{ 
            $concat: [
                {$dateToString: {
                    format: "%d/%m/",
                    date: new Date("2018-02-04")
                }},
                {$substr: [
                    {$year : new Date("2018-02-08")},
                    2,
                    2
                ]}
            ]
        }
}
}
)

Output is:

{ 
    "_id" : NumberInt(12213054), 
    "date" : "04/02/18"
}

Does anyone have any idea why the first query doesn't work?

 

[Answer]

 

$match by design compares a field against a constant value with regular query operators.

For comparing two fields in mongodb you've to use $match with $expr with aggregation query operators in 3.6.

Compare query operators vs aggregation comparison operators.

{"$match":{
  "$expr":{
    "$eq":[
      "$_dt.date", 
      {"$concat":[
        {"$dateToString":{"format":"%d/%m/","date":new Date("2018-02-04")}},
        {"$substr":[{"$year":new Date("2018-02-04")},2,2]}
      ]}
  }
}}

Or

You can simply pass the date string created on client side and compare directly

{"$match":{"_dt.date":"04/02/18"}}

 

 

[출처] https://stackoverflow.com/questions/48727055/mongodb-how-to-compare-string-from-document-to-the-string-constructed-by-expres

 

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
공지 오라클 기본 샘플 데이터베이스 졸리운_곰 2014.01.02 86192
공지 [SQL컨셉] 서적 "SQL컨셉"의 샘플 데이타 베이스 SAMPLE DATABASE of ORACLE 가을의 곰을... 2013.02.10 78670
공지 [G_SQL] Sample Database 가을의 곰을... 2012.05.20 95410
151 [oracle] Pro*C 사용 방법 안내 (Ver 0.9) 이 문서는 오라클의 Pro*C/C++ Precompiler Programmer's Guide.pdf 문서의 일부분을. 정리한 것입니다. file 졸리운_곰 2023.09.08 1491
150 [oracle] [pro-c] pro*C (프로씨) 프로그래밍 졸리운_곰 2023.09.08 2794
149 [oracle] [pro-c] Pro*C 프로그램 개요 졸리운_곰 2023.09.08 1078
148 [oracle] [Pro*C] Pro*C 소개와 기본 특징 및 오류 진단 졸리운_곰 2023.09.08 1153
147 [oracle] [PRO*C] 거의 모든 예제가 다 있다. 졸리운_곰 2023.09.08 919
146 [오라클] 오라클 연동 오류 [ORA-01017: invalid username/password; logon denied] 졸리운_곰 2022.11.28 1487
145 [오라클] 제약조건 확인 (FK 찾기) 졸리운_곰 2022.11.28 1762
144 [SQL 데이터분석 학습][오라클][Oracle] 도커로 Oracle 간단 설치하기 file 졸리운_곰 2022.02.06 813
143 [오라클][Oracle] ORA-00904: 부적합한 식별자 졸리운_곰 2021.10.13 1198
142 [오라클][Oracle] 대소문자 구분 없이 검색하는 경우에 WHERE 조건 file 졸리운_곰 2021.10.13 1943
141 [오라클, Oracle] 오라클 비밀번호 만료(Oracle password has expired) file 졸리운_곰 2021.10.10 1121
140 [Oracle] rollup 쿼리 , 오라클 부분합 구하기 file 졸리운_곰 2021.09.01 1771
139 [Oracle, 오라클 dbms] [ORACLE] 오라클 테이블 & 컬럼 조회 하는 방법 졸리운_곰 2021.05.17 1587
138 [Oracle, 오라클 데이터베이스] java.sql.SQLException: ORA-00911: 문자가 부적합합니다. file 졸리운_곰 2021.02.19 1063
137 [oracle, 오라클] 오라클 MERGE INTO 문으로 있으면 UPDATE 없으면 INSERT 한번에 수행하기 졸리운_곰 2021.02.16 1044
136 java.sql.SQLException: 부적합한 열 인덱스 졸리운_곰 2021.01.25 1148
135 [oracle] 오라클 merge into 간단설명 및 예제(sample) 졸리운_곰 2020.12.14 1148
134 [oracle, sql] 04 | MERGE문 졸리운_곰 2020.12.14 1162
133 [오라클, oracle] ORA-00911 : 문자가 부적합합니다 v1.0 졸리운_곰 2020.12.11 1751
132 [oracle, 오라클] 테이블이 존재 하는데, ORA-00942 발생 file 졸리운_곰 2020.12.11 4056
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED