我有一个mongo db,其公司具有以下数据结构:
{'Beschreibung': [],
'Branche': ['Doctor'],
'Homepage': 'http://www.doctorsdomain.de',
'Mail': None,
'Name': ['Companyname'],
'Ort': 'Doctors City',
'PLZ': '12345 ',
'StrHausnummer': 'Doctors Street',
'Telefonnummer': '1235345646',
'_id': ObjectId('sadfsdfawdfawedfbad5f'),
'domain': 'doctorsdomain',
'doctors': [{'Salutation': 'Dear Madame', 'Name': 'Maximiliane Mustermann'},
{'Salutation': 'Dear Mister', 'Name': 'Bernd Beispiel'}],
'other information'
我没有找到查询来计算我的数据库中有多少名字(医生)。
我试过像
这样的东西collection.find({"doctors":{"$exists":1}}).count()
但是我只得到了医生所在公司的数量。
需要帮助!
非常感谢!