【Mybatis】Sql返回count()数量的处理

【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文件:

<select id="getMyNameCount" resultType="java.lang.Integer">
	select count(*) 
	from user
	where name=#{name} and create_uid=#{uid}
select>

END

你可能感兴趣的:(sql,mybatis,java)