【MongoDB - MongoDB CRUD Operations, Query Documents, Project Fields to Return from Query】教程文章相关的互联网学习教程文章

MongoDB - MongoDB CRUD Operations, Query Documents, Project Fields to Return from Query【代码】【图】

document in the query operation. Projection Document The projection document limits the fields to return for all matching documents. The projection document can specify the inclusion of fields or the exclusion of field and has the following form:{ field1: <value>, field2: <value> ... }The <value> can be any of the following:1 or true to include the field in the return documents. 0 or false to ex...