1.首先count是查詢操做,咱們在xml文件中,先定義resultMapweb
<!--屬性與表字段映射--> <resultMap id="treeInfoMap" type="Map"> <result column="sample_area" jdbcType="VARCHAR" property="sample_area"/> <result column="plant_type_title" jdbcType="VARCHAR" property="plant_type_title"/> <result column="count(1)" property="num" jdbcType="VARCHAR" /> </resultMap>
2.select中寫以下內容app
<select id="TypeStatistics" parameterType="String" resultMap="treeInfoMap"> select plant_type_title,count(1) from t_applet_map <where> <if test="sample_area!=null and sample_area !=''"> sample_area=#{sample_area} </if> </where> group by plant_type_title </select>
【注意】
resultMap 中寫入svg
<result column="count(1)" property="num" jdbcType="VARCHAR" />
效果顯示
MySQL
接口測試
以上就能夠實現分類彙總統計操做了,其餘的依次類推。測試
創做不易,且行且珍惜,求三連!!!spa
本文同步分享在 博客「si_en_hao」(CSDN)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。.net