Mongo 相当于 SQL 的 SELECT DISTINCT?
根据标题,PHP Mongo 相当于 SQL 中的类似内容:
SELECT DISTINCT(field) FROM table WHERE someCondition = 1
我读过 这张表,但我不知道如何将 db.users.distinct('last_name')
映射到 PHP 中。
As per the title, what would be the PHP Mongo equivalent of something like this in SQL:
SELECT DISTINCT(field) FROM table WHERE someCondition = 1
I've read looked at this table but I don't see how to map db.users.distinct('last_name')
into PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需发出 命令 并设置
distinct
键即可。看一下文档中的以下示例:
查找某个键的所有不同值。
上面的示例将输出类似以下内容的内容:
Just issue a command and set the
distinct
key.Take a look at the following example from the docs:
Finding all of the distinct values for a key.
The above example will output something similar to:
如果需要添加 where 子句,请使用以下语法:
If you need to add a where clause, use the following syntax: