sql >> データベース >  >> NoSQL >> MongoDB

日付でMongoDBObjectIdをクエリできますか?

    タイムスタンプをObjectIdにポップすると、ObjectIdに埋め込まれた日付に基づくクエリが詳細にカバーされます。

    JavaScriptコードで簡単に:

    /* This function returns an ObjectId embedded with a given datetime */
    /* Accepts both Date object and string input */
    
    function objectIdWithTimestamp(timestamp) {
        /* Convert string date to Date object (otherwise assume timestamp is a date) */
        if (typeof(timestamp) == 'string') {
            timestamp = new Date(timestamp);
        }
    
        /* Convert date object to hex seconds since Unix epoch */
        var hexSeconds = Math.floor(timestamp/1000).toString(16);
    
        /* Create an ObjectId with that hex timestamp */
        var constructedObjectId = ObjectId(hexSeconds + "0000000000000000");
    
        return constructedObjectId
    }
    
    
    /* Find all documents created after midnight on May 25th, 1980 */
    db.mycollection.find({ _id: { $gt: objectIdWithTimestamp('1980/05/25') } });
    


    1. $match内のmongodb集計クエリで$regexを使用する方法

    2. RedisTemplateを使用してRedisから設定値を取得する

    3. mongodb配列で見つかったフィールドを削除します

    4. MongoDB特定の配列値を置き換えます