Mybatis|Mybatis Select Count(*)的返回值类型介绍
目录
- Select Count(*)的返回值类型
- 返回Count(*)的整数值
Select Count(*)的返回值类型
select count(*) from mon_alarm_mail_send_logwhere is_del = '0'and airport = #{airport} and system = #{system} and relate_table = #{relateTable} and send_time > = to_date(#{params.startTime},'yyyy-MM-dd HH24:mi:ss') and send_time < = to_date(#{params.endTime},'yyyy-MM-dd HH24:mi:ss')
类似于select count(*)的语句的返回值为java.lang.Integer
返回Count(*)的整数值 1、mybatis中resultType定义为"java.lang.Integer"
select count(*) from tableName
2、接口中返回值写成int,即可
int selectNums();
【Mybatis|Mybatis Select Count(*)的返回值类型介绍】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- mybatisplus如何在xml的连表查询中使用queryWrapper
- mybatisplus|mybatisplus where QueryWrapper加括号嵌套查询方式
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- Spring|Spring Boot之ImportSelector
- performSelectorOnMainThread:withObject:waitUntilDone:参数设置为NO或YES的区别
- 2019年PB|2019年PB County Senior Open, 保龄生涯(64)
- MyBatis|MyBatis Generator配置
- CountDownLatch-线程并发的发令枪