标签:strong project reg 数据 tps obj https img add
mongo语法的四则运算符号:加法("$add")、减法("$subtract")、乘法("$multiply")、除法("$divide")、求模("$mod")
以除法为例(其余同):
数据库course表存在一条"_id"为"5ab4dfcabeb21f77cf7dbdf3"的数据,delete字段为2,total字段为12,求该条数据的total/6;
数据显示:
mongo语句:db.course.aggregate([{"$match":{"_id": ObjectId("5ab4dfcabeb21f77cf7dbdf3") }},{"$project":{ "_id": 0 ,"total":{"chufa":{"$divide":["$total",6]}}}}])
查询结果:
数据库存在一条"_id"为"5ab4dfcabeb21f77cf7dbdf3"的数据,delete字段为2,total字段为12,求该条数据的total/delete。
数据显示:同上
mongo语句:db.course.aggregate([{"$match":{"_id": ObjectId("5ab4dfcabeb21f77cf7dbdf3") }},{"$project":{ "_id": 0,"total/delete":{"$divide":["$total","$delete"]}}}])
查询结果:
标签:strong project reg 数据 tps obj https img add
原文地址:https://www.cnblogs.com/Calinayc/p/11551747.html