第四题可以用多条件查询(
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