mybatis查询count
时间: 2023-08-15 13:05:38 浏览: 101
Mybatis查不到数据查询返回Null问题
使用Mybatis-Plus查询数量可以使用Wrapper的count方法,例如:
```
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.eq("age", 18);
int count = userMapper.selectCount(wrapper);
```
以上代码表示查询年龄为18的用户数量。其中,userMapper是Mybatis-Plus自动生成的Mapper接口,selectCount方法返回查询结果的数量。
阅读全文