我需要在MongoDB中存储消息的更新覆盖率。
我将获取更新的邮件数/邮件总数,然后 * 100,这样我就可以获得百分比total 119 updated 6
结果将为5.042016806722689
**如何将其存储为5.04
?**是否有这样的存储方法?
updates_coverage = (updated_event_query / total_event_query) * 100
插入代码为:
inserted_results_collection.insert_one({"updates_coverage": collection.updates_coverage})
1条答案
按热度按时间dldeef671#