mybatis group by substr函數傳參報錯的解決

mybatis group by substr傳參報錯

報異常

### Cause: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表達式

SELECT
    SUBSTR( region_code, 1,#{ queryMap.groupCodeLength, jdbcType = INTEGER } ) AS "region_code",
    count( CASE WHEN TYPE = 1 THEN 0 END ) AS "like",
    count( CASE WHEN TYPE = 2 THEN 0 END ) AS "roast" 
FROM
    t_pub_sentiment 
WHERE
    1 = 1 
GROUP BY
    SUBSTR(region_code,1,#{ queryMap.groupCodeLength,jdbcType = INTEGER })

更改後:

SELECT
    SUBSTR( region_code, 1, $ { queryMap.groupCodeLength } ) AS "region_code",
    count( CASE WHEN TYPE = 1 THEN 0 END ) AS "like",
    count( CASE WHEN TYPE = 2 THEN 0 END ) AS "roast" 
FROM
    t_pub_sentiment 
WHERE
    1 = 1 
GROUP BY
    SUBSTR( region_code, 1, $ { queryMap.groupCodeLength } )

原因

#{} 和 ${} 在預編譯中的處理是不一樣的。#{} 在預處理時,會把參數部分用一個占位符 ? 代替。而 ${} 則隻是簡單的字符串替換。

${}有sql註入的風險,需謹慎使用。

使用group by 分組查詢返回為null

我在使用mybatis進行分組查詢時數據庫有數據,但是mybatis返回為null,使用mybatis版本為3.4.1

解決方法

在resultMap的result標簽中添加 property屬性

如下:

<resultMap id="deptMap" type="java.util.Map">
        <result column="id" property="id"/>
        <result column="dept_name" property="deptname"/>
        <result column="count(1)" property="count"/>
    </resultMap>
  
 <select id="getDeptByIdStep" resultMap="deptMap">
  select  id,dept_name,count(1)  from tbl_dept where dept_id=#{id} group by id;
 </select>

我在第一次使用時沒有添加property導致mybatis返回null,添加後就可以正常返回。

dao層代碼

public List<Map> getDeptByIdStep(Integer id);

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: