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

mongodb:今日作成されたレコードを除外する方法は?

    現在の日付を取得できると仮定します...

    // the start of the day (midnight)
    begin_date_range = ISODate("2012-06-12T00:00:00Z");
    
    // the start of the next day (at midnight)
    // this can also be done with 11:59:59PM of the current date using $lte
    end_date_range = ISODate("2012-06-13T00:00:00Z");
    
    results = db.collection_name.where({"chashi_ts":{
                  "$gte":begin_date_range,
                  "$lt":end_date_range}
              );
    



    1. MongoDB(Java)-javascriptファイルに保存されたクエリを実行する方法は?

    2. execPopulate()の使用法

    3. 花を始めると、次のようになります。dbm.error:dbタイプはdbm.gnuですが、モジュールは使用できません

    4. いつMongoDB接続を開いたり閉じたりする必要がありますか?