tp6 mongo使用in查询代码
时间: 2023-12-14 09:39:45 浏览: 139
在 ThinkPHP6 中使用 MongoDB 进行 in 查询,可以使用 `whereIn` 方法。以下是一个示例代码:
```php
use think\facade\MongoDb;
// 查询条件
$ids = [1, 2, 3];
$where = [
'id' => [
'$in' => $ids,
],
];
// 执行查询
$result = MongoDb::name('collection_name')->whereIn($where)->select();
```
其中,`$ids` 是需要查询的 ID 列表,`$where` 是查询条件,`$in` 表示查询 ID 在列表中的记录。可以根据实际情况修改查询条件。最后使用 `whereIn` 方法执行查询,得到结果集 `$result`。
阅读全文