mybatis查询count

Mapper.xml

resultType定义为java.lang.Integer

   <select id="countCountry"  resultType="java.lang.Integer">
        select count(*) from sys_area where pid=#{streetId};
    select>

Mapper.java

/**
 * 查询街道中的村的数量
 * @param streetId 街道ID
 * @return
 */
public int countCountry(@Param("streetId") String streetId);

参考

https://blog.csdn.net/weistin/article/details/79864150

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