如何在MongoShell中实现以下SQL?
Select TableA.* from TableA where TableA.FieldB in (select TableB.FieldValue from TableB)
Mongo doc提供了一些
的例子db.inventory.find( { qty: { $in: [ 5, 15 ] } } )
我希望该数组是从另一个查询动态生成的。有可能吗?
扩展我的问题
我有一组bot
名称
机器人收藏
{
"_id" : ObjectId("53266697c294991f57c36e42"),
"name" : "teoma"
}
我有一组用户流量,在该流量集合中,我有一个字段useragent
userTraffic Collection
{
"_id" : ObjectId("5325ee6efb91c0161cbe7b2c"),
"hosttype" : "http",
"useragent" : "Mediapartners-Google",
"is_crawler" : false,
"City" : "Mountain View",
"State" : "CA",
"Country" : "United States"
}
我想选择其useragent
包含bot
集合的任何名称
这就是我的想法
var botArray = db.bots.find({},{name:1, _id:0}).toArray()
db.Sessions.find({
useragent: {$in: botArray}
},{
ipaddress:1
})
我认为这是等于比较,但我希望它能像<%>那样比较
获得结果后,我想对结果集进行更新 is_crawler = true
尝试过这样的事情,没有帮助
db.bots.find().forEach( function(myBot) {
db.Sessions.find({
useragent: /myBot.name/
},{
ipaddress:1
})
});
循环记录的另一种方法,但找不到匹配。
var bots = db.bots.find( {
$query: {},
$orderby:{
name:1}
});
while( bots.hasNext()) {
var bot = bots.next();
//print(bot.name);
var botName = bot.name.toLowerCase();
print(botName);
db.Sessions.find({
useragent: /botName/,
is_crawler:false
},{
start_date:1,
ipaddress:1,
useragent:1,
City:1,
State:1,
Country:1,
is_crawler:1,
_id:0
})
}
答案 0 :(得分:5)
不是单个查询,它不是。
从查询中获取结果并将其作为您的状态进行输入没有任何问题。
var list = db.collectionA.find({},{ "_id": 0, "field": 1 }).toArray();
results = db.collectionB.find({ "newfield": { "$in": list } });
但是你的实际目的并不明确,因为单独使用SQL查询作为想要实现的唯一例子通常不是回答问题的好指南。造成这种情况的主要原因是您可能应进行不同的建模,而不是在关系中进行建模。否则,为什么要使用MongoDB?
我建议阅读Data Modelling上的文档部分,其中显示了如何处理常见建模案例的几个示例。
考虑到这些信息,那么也许你可以重新考虑你的建模,如果你对那里的其他问题有特定的问题,那么随时在这里提问。
答案 1 :(得分:0)
最后,我才能做到这一点。
// Get a array with values for name field
var botArray = db.bots.find({},{name:1}).toArray();
// loop through another collection
db.Sessions.find().forEach(function(sess){
if(sess.is_crawler == false){ // check a condition
// loop in the above array
botArray.forEach(function(b){
//check if exists in the array
if(String(sess.useragent).toUpperCase().indexOf(b.name.toUpperCase()) > -1){
db.Sessions.update({ _id : sess._id} // find by _id
,{
is_crawler : true // set a update value
},
{
upsert:false // do update only
})
}
});
}
});