我是通過Codeigniter使用mongodb的新手。我已經注意到了MongoDB的一些活動記錄是非常相似的SQL例如如何使用Codeigniter選擇不同的mongodb數據庫
$this->db->get('mytable');
$this->mongo_db->get('mytable');
但是我遇到了一個問題,即在不同不起作用:
$this->mongo_db->distinct('name');
$this->mongo_db->get('mytable');
一直在尋找周圍這一點,但couldn找不到任何東西,有沒有辦法呢?
非常感謝