我需要在 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)