如何在MongoDb查询中翻译此SQL查询?这可能吗?
Select
a = 1,
field1
from
TableName
where
aField = myValue
谢谢人
使用find()可能无法添加静态字段,使用聚合可以提供相同的输出作为SQL查询。解决方案有点傻。
db.TableName.aggregate( {$match: { aField : myValue }},
{ $project : {_id:0, field1 :1, a: {$add: [1]} } } )