• 2022-11-03
    查询专业不存在的学生信息,正确的命令是?
    A: db.students.find({"major":null})
    B: db.students.find({"major":{$in:[null],$exists:true}})
    C: db.students.find({"major":{$exists:false}})
    D: db.students.find({"major":{$exists:true}})
  • 举一反三