Heim > Fragen und Antworten > Hauptteil
mysql可以指定select 后面的字段
mongo 通过java 怎么实现该功能 比如我要根据c_oid得到c_title java代码怎么写?
PHPz2017-04-18 10:27:29
这里讲的很详细
http://mongodb.github.io/mong...
譬如下面这样fields include包含你想要返回的字段
collection.find(eq("c_oid", "****"))
.projection(fields(include("c_title"), excludeId()));