MyBatis實現多表聯合查詢resultType的返回值
更新時間:2022年03月10日 17:17:23 作者:aloofAnd
這篇文章主要介紹了MyBatis多表聯合查詢resultType的返回值,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
多表聯合查詢resultType的返回值
一般數據按參數類型返回
<select id="queryCarIdList" resultType="long"> ? ? ? ? select id from t_car_car </select>
? <select id="queryDept" resultType="string">
? ? ? ? SELECT deptname FROM t_car_run where deptid = #{deptid} GROUP BY deptname
? ? </select>根據某字段查詢
返回的類型是實體類,因為查詢結果數據均為實體類中字段的數據
<select id="queryNumber" resultType="io.renren.modules.generator.entity.TCarRunEntity">
? ? ? ? select number from t_car_car where id = #{carid}
</select>查詢結果為多條記錄,存放在list中返回
返回的類型是實體類,因為查詢結果數據均為實體類中字段的數據
<select id="queryCar" resultType="io.renren.modules.generator.entity.TCarCarEntity"> ? ? ? ? select * from t_car_car </select>
多表聯合查詢
t_car_cart_car_drivert_car_cardriver
t_car_cardriver存放的兩個字段分別是t_car_car和t_car_driver的主鍵id
解決方案
1.resultType的返回類型是java.util.Map
返回得到的是List中存放的所有數據
<select id="queryDriver" resultType="java.util.Map">
? ? ? ? select driverid from t_car_cardriver where carid = #{id}
</select>2.新建一個實體類
里面存放的是查詢結果里需要的字段名
// TCarCarDriver private Long carid; private Long driverid;
返回類型為該實體類
<select id="queryDriver" resultType="TCarCarDriver">
? ? ? ? select driverid from t_car_cardriver where carid = #{id}
</select>多表聯查,返回結果嵌套list
多層集合嵌套返回結果用resultMap,collection中再次使用resultMap
<resultMap id="chainVo" type="com.suncnpap.intelligentqa.vo.ChainVo">
? ? <id column="cid" property="id"/>
? ? <result column="access_key" property="accessKey"/>
? ? <result column="secret_key" property="secretKey"/>
? ? <result column="outer_chain_name" property="outerChainName"/>
? ? <result column="outer_chain_document" property="outerChainDocument"/>
? ? <collection property="intentionVos" ofType="com.suncnpap.intelligentqa.vo.ChainIntentionVo"
? ? ? ? ? ? ? ? resultMap="intentionVos"/>
</resultMap>
?
<resultMap id="intentionVos" type="com.suncnpap.intelligentqa.vo.ChainIntentionVo">
? ? <id column="iid" property="id"/>
? ? <result column="intention_name" property="intentionName"/>
? ? <collection property="questionVoList" ofType="com.suncnpap.intelligentqa.vo.MultiQuestionVo">
? ? ? ? <id column="qid" property="id"/>
? ? ? ? <result column="question" property="question"/>
? ? </collection>
? ? <collection property="wordVos" ofType="com.suncnpap.intelligentqa.vo.ChainIntentionWordVo">
? ? ? ? <id column="wid" property="id"/>
? ? ? ? <result column="word_slot" property="wordSlot"/>
? ? ? ? <result column="word_slot_miss_question" property="wordSlotMissQuestion"/>
? ? ? ? <result column="entity_type_ids" property="entityTypeIds"/>
? ? </collection>
</resultMap>
?
<select id="detail" resultMap="chainVo">
? ? select tc.id ? as tid,
? ? ? ? ? ?tci.id ?as iid,
? ? ? ? ? ?tciw.id as wid,
? ? ? ? ? ?tmq.id ?as qid,
? ? ? ? ? ?access_key,
? ? ? ? ? ?secret_key,
? ? ? ? ? ?outer_chain_name,
? ? ? ? ? ?outer_chain_document,
? ? ? ? ? ?intention_name,
? ? ? ? ? ?question,
? ? ? ? ? ?word_slot,
? ? ? ? ? ?word_slot_miss_question,
? ? ? ? ? ?entity_type_ids
? ? from t_chain tc
? ? ? ? ? ? ?left join t_chain_intention tci on tc.id = tci.chain_id
? ? ? ? ? ? ?left join t_chain_intention_word tciw on tci.id = tciw.intention_id
? ? ? ? ? ? ?left join t_multi_question tmq on tci.id = tmq.parent_id
? ? where tc.id = #{id}
? ? ? and tc.deleted = 0
</select>以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
Mybatis-plus解決兼容oracle批量插入的示例詳解
Mybatis-Plus 是一個 MyBatis 的增強工具,提供無侵入、損耗小的 CRUD 操作,本文給大家介紹了Mybatis-plus解決兼容oracle批量插入,文中通過大家介紹的非常詳細,需要的朋友可以參考下2024-11-11
教你使用idea搭建ssm詳細教程(Spring+Spring Mvc+Mybatis)
今天教大家使用idea搭建ssm詳細教程(Spring+Spring Mvc+Mybatis),文中有非常詳細的圖文介紹及代碼示例,對正在學習使用idea的小伙伴很有幫助,需要的朋友可以參考下2021-05-05
Spring?Boot虛擬線程Webflux在JWT驗證和MySQL查詢性能比較
這篇文章主要為大家介紹了Spring Boot虛擬線程與Webflux在JWT驗證和MySQL查詢上的性能比較,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-09-09

