mysql可以指定select 后面的字段
mongo 通过java 怎么实现该功能 比如我要根据c_oid得到c_title java代码怎么写?
认证高级PHP讲师
就是普通的查詢,參考官方文件吶。
這裡講的很詳細http://mongodb.github.io/mong...
譬如下面這樣fields include包含你想要回傳的欄位
collection.find(eq("c_oid", "****")) .projection(fields(include("c_title"), excludeId()));
就是普通的查詢,參考官方文件吶。
這裡講的很詳細
http://mongodb.github.io/mong...
譬如下面這樣fields include包含你想要回傳的欄位