삭제 단일 문서 삭제 db.collection.deleteOne({ 조건 }); 여러 문서 삭제 db.collection.deleteMany({ 조건 }); db.collection.deleteOne({name: "홍길동"}); //name이 홍길동인 document 삭제 db.collection.deleteOne({}); // 한개삭제 처음 도큐먼트 한개를 삭제하는 명령이다. db.collection.deleteMany({name: "홍길동"});// name이 '홍길동'인 document 모두삭제 db.collection.deleteMany({}); // 모두 삭제