搜尋

首頁  >  問答  >  主體

mysql - mybatis 查詢 統計某個欄位數量 ,根據一個欄位,分組查詢,在xml檔案如何接收

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參數該怎麼寫才能接收到值

ringa_leeringa_lee2715 天前1360

全部回覆(1)我來回復

  • PHP中文网

    PHP中文网2017-06-15 09:23:18

    提供下實體類別的資訊.

    提示:count(title)你沒有映射對應實體類別的哪個變數.

    回覆
    0
  • 取消回覆