我在 SQL 中有这个查询:
"SELECT code, name, count(*) FROM table WHERE customer = "XXX" GROUP BY code ORDER BY count(*) DESC;
我正在使用 PHP,我必须为 mongodb 翻译这个 SQL 查询。我知道我必须做这样的事情才能在 mongodb 中计数:
$array_where_condition = array("customer" => "XXX");
$db->find($array_where_condition)->count();
但我不明白如何编写像上面这样的查询。