MongoDB集合中使用的密钥列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB集合中使用的密钥列表相关的知识,希望对你有一定的参考价值。

Takes the collection 'david' and gives a unique array of the keys used.
  1. $m = new Mongo();
  2. $db = $m->test;
  3. $collection = $db->david;
  4. $cursor = $collection->find();
  5. $array = iterator_to_array($cursor);
  6. $keys = array();
  7. foreach ($array as $k=>$v) {
  8. foreach ($v as $a=>$b) {
  9. $keys[] = $a;
  10. }
  11. }
  12. $keys = array_values(array_unique($keys));

以上是关于MongoDB集合中使用的密钥列表的主要内容,如果未能解决你的问题,请参考以下文章

如何查看一个mongodb数据库的集合列表

MongoDB DBRef 列表在 Spring Boot 中返回 null

用于 MongoDB API 的分片密钥和 Azure CosmosDB

将 mongodb 集合中的文档副本存储在字典列表中,并使用此数据而不是查询数据库是个好主意吗?

mongodb关联查询

mongodb, pymongo 查询