mybatis 查詢 統計某個欄位數量 ,根據一個欄位,分組查詢,在xml檔案中resultType參數不知道怎麼寫。
SQL語句:
select title_type,COUNT(title) from qa_title where title like '%車%' GROUP BY title_type ;
xml:
<select id="getTitleCuntLike" resultType="cheng.secondprice.entitylet.QaContent" parameterType="String">
select title_type,COUNT(title) from qa_title where title like '%${titles}%' GROUP BY title_type
</select>
#試過用實體類別去接收,不行,想問這種情況,resultType參數該怎麼寫才能接收到值