gpt4 book ai didi

java - MyBatis查询结果是HashMap吗?

转载 作者:行者123 更新时间:2023-12-02 11:20:11 26 4
gpt4 key购买 nike

对于以下查询,

 SELECT 
MSGS.MSGTYPE,
count(*) as NOOFRECORDS
FROM
SCHEMA.MESSAGES MSGS
GROUP BY
MSGS.MSGTYPE

MyBatis 映射器中的等效项是什么,以便我可以获取结果作为 HashMap,其中 MSGS.MSGTYPE 作为键,NOOFRECORDS 作为值?

最佳答案

<select id="selectAllCategories" resultType="hashmap">
select id, name from categories
</select>

此处有更多详细信息

Stack Answer

关于java - MyBatis查询结果是HashMap吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26918434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com