Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NoSQLを試しています。IDで削除する方法を知っています
$criteria = array( '_id' => new MongoId('5277aeb6b28fada80a00002b'), ); $users->remove($criteria);
ただし、「name」="John" のように新しい値を指定した場合の削除方法
PHP でどのように表現されるかはわかりませんが、Scala では次のようにします。
val criteria = MongoDBObject("name" -> "John") coll.remove(criteria)