对于以下查询,
SELECT
MSGS.MSGTYPE,
count(*) as NOOFRECORDS
FROM
SCHEMA.MESSAGES MSGS
GROUP BY
MSGS.MSGTYPE
MyBatis映射器中的等价物是什么,以便我可以将结果作为HashMap获取,其中MSGS.MSGTYPE作为键,NOOFRECORDS作为值?
答案 0 :(得分:12)
<select id="selectAllCategories" resultType="hashmap">
select id, name from categories
</select>
以及更多详情