こんにちは、MongoDB の初心者です。最初に MapReduce メソッドと他の Aggregation メソッドの 2 つの手法を使用して、この 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;