Answers for ".set"

2

set

SET: Can only store unique values, 
     And does not maintain order
- HashSet can have null, order is not guaranteed
- LinkedHashSet can have null and keeps the order 
- TreeSet sorts the order and don't accept null
Posted by: Guest on January-06-2021
0

$set

// https://mongodb.github.io/node-mongodb-native/markdown-docs/insert.html

//To update only selected fields, $set operator needs to be used. Following replacement object replaces author value but leaves everything else intact.

collection.update({_id:"123"}, {$set: {author:"Jessica"}});
Posted by: Guest on July-28-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language