如何在MongoDB中将15位十进制数存储为2位十进制数?

uqzxnwby  于 2023-01-20  发布在  Go
关注(0)|答案(1)|浏览(149)

我需要在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})
dldeef67

dldeef671#

updates_coverage = round(((updated_event_query / total_event_query) * 100),2)

相关问题