文章詳情頁
mysql - mybatis 查詢 統計某個列數量 ,根據一個列,分組查詢,在xml文件如何接收
瀏覽:66日期:2022-06-11 13:02:35
問題描述
mybatis 查詢 統計某個列數量 ,根據一個列,分組查詢,在xml文件中resultType參數不知道怎么寫。
SQL語句:select title_type,COUNT(title) from qa_title where title like ’%車%’ GROUP BY title_type ;
xml:
<select 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參數該怎么寫才能接收到值
問題解答
回答1:提供下實體類的信息.
提示:count(title)你沒有映射對應實體類的哪個變量.
排行榜
