1
我正在與Codeigniter和一起工作。MongoDB&CodeIgniter:選擇字段的存在位置
我想執行一個字段存在的選擇。
db.yourcollection.find({ 'otherInfo.text' : { '$exists' : true }})
但我無法找到如何做到這一點與這個庫...
任何解決方案嗎?
我正在與Codeigniter和一起工作。MongoDB&CodeIgniter:選擇字段的存在位置
我想執行一個字段存在的選擇。
db.yourcollection.find({ 'otherInfo.text' : { '$exists' : true }})
但我無法找到如何做到這一點與這個庫...
任何解決方案嗎?
不是CI程序員在這裏,但我會想:
$this->mongo_db->where(array('otherInfo.text'=>array('$exists'=>true)))
會工作。
嫁給我吧!非常感謝你... ! – 2013-05-09 17:56:35