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(*)的返回值类型介绍】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读