MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment supprimer une colonne dans mongodb à l'aide des pilotes Java ?

Vous pouvez essayer quelque chose comme ça.

import static com.mongodb.client.model.Projections.excludeId;

FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(excludeId());

Exclure d'autres champs

import static com.mongodb.client.model.Projections.fields;

FindIterable<Document> resultSet = db.getCollection("document").find(query).projection(
fields(exclude("fieldname", "fieldvalue")));

Pour la liste complète des projections.

http://api.mongodb.com/ java/3.0/?com/mongodb/client/model/Projections.html http://mongodb.github.io/mongo-java- driver/3.0/builders/projections/