下面的查询在mongodb中有翻译吗

hgqdbh6s  于 2023-06-29  发布在  Go
关注(0)|答案(1)|浏览(83)

我试图选择一个字符串,就像我们在SQL中可以做的那样:
select 'true' from my_db where status='checked';
但是我只能选择状态列,无法使用查询选择像“true”这样的自定义标志。任何人都可以请指导,如果有一个mongo翻译上述查询

pprl5pva

pprl5pva1#

投影语言非常灵活。像这样的吗

db.collection.find({
  status: "checked"
},
{
  status: {
    $literal: "true"
  }
})

Playground demonstration here

相关问题