Love beautiful code? We do too.
Phương thức remove() trong MongoDB được sử dụng để xóa Document từ Collection. Phương thức remove() nhận hai tham số. Tham số đầu tiên deletion criteria xác định Document để xóa, và tham số thứ hai là justOne.
Cú pháp cơ bản của phương thức remove() là như sau:
>db.COLLECTION_NAME.remove(DELLETION_CRITTERIA)
Bạn theo dõi Collection có tên mycol có dữ liệu sau:
{ "_id" : ObjectId(5983548781331adf45ec5), "title":"MongoDB Overview"}
{ "_id" : ObjectId(5983548781331adf45ec6), "title":"NoSQL Overview"}
{ "_id" : ObjectId(5983548781331adf45ec7), "title":"Tutorials Point Overview"}
Ví dụ sau sẽ xóa tất cả Document có title là 'MongoDB Overview':
>db.mycol.remove({'title':'MongoDB Overview'})
>db.mycol.find()
{ "_id" : ObjectId(5983548781331adf45ec6), "title":"NoSQL Overview"}
{ "_id" : ObjectId(5983548781331adf45ec7), "title":"Tutorials Point Overview"}
>
Nếu có nhiều bản ghi và bạn chỉ muốn xóa bản ghi đầu tiên, thì thiết lập tham số justOne trong phương thức remove().
>db.COLLECTION_NAME.remove(DELETION_CRITERIA,1)
Nếu bạn không xác định deletion criteria, thì MongoDB sẽ xóa toàn bộ Document từ Collection. Điều này tương đương với lệnh truncate trong SQL.
>db.mycol.remove()
>db.mycol.find()
>
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời