0

mongoフィルターにサブクエリのようなものが必要です。みたいなこと言う

Select * from table where column_1 < column_2

Select * from table where column_1 < (select max(column_1) from table)

上記のSQLステートメントに相当するmongodbはありますか?

アップデート

ドキュメントを読んだ後Select * from table where column_1 < column_2、mongoを使用してできることがわかりました$where

しかし、私はまだ行うための答えを知りませんSelect * from table where column_1 < (select max(column_1) from table)

4

2 に答える 2

1

$where演算子を使用できます。$whereの使用法については、これを参照してください

于 2013-06-03T14:21:48.700 に答える