嗨,我是 MongoDB 的新手,我需要首先使用 MapReduce 方法和其他聚合方法中的两种技术将此 sql 查询转换为 mongodb。有人可以帮忙吗?
select
sum(l_extendedprice*l_discount) as revenue
from
lineitem
where
l_shipdate >= date '1994-01-01'
and l_shipdate < date '1994-01-01' + interval '1' year
and l_discount between 0.06 - 0.01 and 0.06 + 0.01
and l_quantity < 24;