Ejemplo 1: mongodb eliminar todos los documentos
db.collection.delete_many( { } );
Ejemplo 2: mongodb eliminar todos los documentos
# To remove all documents in a collection, call the remove method with an empty query
# document {}. The following operation deletes all documents from the bios collection:
db.bios.remove( { } )
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)