MybatisSelectCount(*)的返回值类型介绍
短信预约 -IT技能 免费直播动态提醒
Select Count(*)的返回值类型
<select id="queryAlarmStatisticalAnalysis4System" parameterType="AlarmMailSendLog"
resultType="java.lang.Integer">
select count(*) from mon_alarm_mail_send_log
where is_del = '0'
<if test="airport != null and airport != ''">
and airport = #{airport}
</if>
<if test="system != null and system != ''">
and system = #{system}
</if>
<if test="relateTable != null and relateTable != ''">
and relate_table = #{relateTable}
</if>
<if test="params.startTime != null and params.startTime != ''">
and send_time >= to_date(#{params.startTime},'yyyy-MM-dd HH24:mi:ss')
</if>
<if test="params.endTime != null and params.endTime != ''">
and send_time <= to_date(#{params.endTime},'yyyy-MM-dd HH24:mi:ss')
</if>
</select>
类似于select count(*)的语句的返回值为java.lang.Integer
返回Count(*)的整数值
1、mybatis中resultType定义为"java.lang.Integer"
<select id="selectNums" resultType="java.lang.Integer">
select count(*) from tableName
</select>
2、接口中返回值写成int,即可
int selectNums();
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341