$exists:判断字段是否存在;1,查询所有存在name字段的记录db.users.find({name: {$exists: true}});
2,查询所有不存在phone字段的记录db.users.find({phone: {$exists: false}});
本文共 185 字,大约阅读时间需要 1 分钟。
$exists:判断字段是否存在;1,查询所有存在name字段的记录db.users.find({name: {$exists: true}});
2,查询所有不存在phone字段的记录db.users.find({phone: {$exists: false}});
转载于:https://my.oschina.net/u/563488/blog/514919