查找CommentId大于2,Name以Test开头的评论:
db.tblDaily.find({"Comments":{$elemMatch:{"CommentId":{$gt:2},"Name":/Test+/}}}).pretty()
$where 后可以直接执行任意的JavaScript $where function......(只有在走投无路时才考虑使用$where)
查找CommentId大于2,Name以Test开头的评论:
db.tblDaily.find({"Comments":{$elemMatch:{"CommentId":{$gt:2},"Name":/Test+/}}}).pretty()
$where 后可以直接执行任意的JavaScript $where function......(只有在走投无路时才考虑使用$where)