慕田峪1314768
2019-11-04 11:10
第四题可以用多条件查询(
selectByMap
)吗?
第四题不可以使用selectByMap,因为selectByMap中传入的Map参数中的键值对,都会作为where中的等值条件。
例如:
Map<String, Object> map= new HashMap<>(); map.put(name,"laoyuan"); map.put(age,21); userMapper.selectByMap(map);
最后的查询条件为where name='laoyuan' and age=21
MyBatis-Plus入门
56140 学习 · 381 问题
相似问题