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)