赞
踩
也有一段时间没有更新了。。。现在想想还是有点疲惫了。。。
http://www.cnblogs.com/Joans/p/3729914.html
http://www.cnblogs.com/lori/p/4597341.html
db.runCommand({
mapreduce: "M_User_Footprints",
map: function Map() {
emit(
{ "UserInfoID": this.UserInfoID, "ObjID": this.PlayVideo.ObjID }
,
{ count: 1 }
);
},
reduce: function Reduce(key, values) {
total = 0;//定义一个变量total , values是一个数组
for (var i in values) {
total += values[i].count
}
return { "count": total };
},
finalize: function Finalize(key, reduced) {
return reduced;
},
out: { inline: 1 }
});
字段的where 子句 可以使用 正则表达式 格式为:where 字段 referee REGEXP '^0[1-9][0-9]{4}$'
在mysql 里 01234和 1234 是相等的。。。所以, 你懂的。。。会出问题。。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。