MongoDB模糊查詢

模糊查詢簡介 MongoDB查詢條件可使用正則表達式,從而實現模糊查詢的功能。模糊 查詢可使用$regex操做符或直接使用正則表達式對象。 MySQL MongoDB select * from student where  name like ’%joe%’ db.student.find( {name: {$regex:/joe/}}) select * from student where 
相關文章
相關標籤/搜索