2013-01-01から1ヶ月間の記事一覧
db.Collection.find({$where:function(){return this._id.toString().match(/9$/);}})↑_idの末尾が9のドキュメントだけ取得する。前方一致も部分一致も正規表現変えればOKdb.Collection.find({$where:function(){return String(this.someObjectId).match(/9$…
db.Collection.find({$where:function(){return this._id.toString().match(/9$/);}})↑_idの末尾が9のドキュメントだけ取得する。前方一致も部分一致も正規表現変えればOKdb.Collection.find({$where:function(){return String(this.someObjectId).match(/9$…