【Mybatis】Sql返回count(*)数量的处理
如果把SQL写在类中或是注解中,当要取select count(*) ....
类型SQL的返回值,直接指定函数的返回类型为int/long
即可;
但对于把sql语句写在XML文件的情况,如果要取select count(*) ....
的返回值,必须要指明结果类型resultType="java.lang.Integer
,否则程序报错。
Mapper类中函数:
int getMyNameCount(@Param("uid") long createrId,@Param("name") String name);
XML文件:文章来源:https://www.toymoban.com/news/detail-657009.html
<select id="getMyNameCount" resultType="java.lang.Integer">
select count(*)
from user
where name=#{name} and create_uid=#{uid}
</select>
END文章来源地址https://www.toymoban.com/news/detail-657009.html
到了这里,关于【Mybatis】Sql返回count()数量的处理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!