查询SN号0001结尾的数据 {'sn': {'$regex': '0001$' }} 或者 {'sn': /0001$/ }}
查询SN号2023开头的数据 {'sn': {'$regex': '^2023' }} 或者 {'sn': /^2023/ }}
MongoRepository中@Query("{'type': ?0,'sn': {'$regex': ?1 }}") 参数从0开始
查询SN号0001结尾的数据 {'sn': {'$regex': '0001$' }} 或者 {'sn': /0001$/ }}
查询SN号2023开头的数据 {'sn': {'$regex': '^2023' }} 或者 {'sn': /^2023/ }}
MongoRepository中@Query("{'type': ?0,'sn': {'$regex': ?1 }}") 参数从0开始
本文标题:Mongodb模糊查询
本文链接:https://www.haomeiwen.com/subject/ikvjmxtx.html
网友评论