最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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_car
  • t_car_driver
  • t_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>

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關文章

  • Java中的線程安全問題詳細解析

    Java中的線程安全問題詳細解析

    這篇文章主要介紹了Java中的線程安全問題詳細解析,線程安全是如果有多個線程在同時運行,而這些線程可能會同時運行這段代碼,程序每次運行結果和單線程運行的結果是一樣的,而且其他的變量的值也和預期的是一樣的,此時我們就稱之為是線程安全的,需要的朋友可以參考下
    2023-11-11
  • Spring?boot整合jsp和tiles模板示例

    Spring?boot整合jsp和tiles模板示例

    這篇文章主要介紹了Spring?boot整合jsp模板和tiles模板的示例演示過程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-03-03
  • java實現識別二維碼圖片功能

    java實現識別二維碼圖片功能

    這篇文章主要為大家詳細介紹了java實現識別二維碼圖片功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-04-04
  • Spring AOP事務管理的示例詳解

    Spring AOP事務管理的示例詳解

    這篇文章將通過轉賬案例為大家詳細介紹一下Spring AOP是如何進行事務管理的,文中的示例代碼講解詳細,感興趣的小伙伴可以了解一下
    2022-06-06
  • Mybatis-plus解決兼容oracle批量插入的示例詳解

    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搭建ssm詳細教程(Spring+Spring Mvc+Mybatis),文中有非常詳細的圖文介紹及代碼示例,對正在學習使用idea的小伙伴很有幫助,需要的朋友可以參考下
    2021-05-05
  • Java遍歷Map對象集合的六種方式代碼示例

    Java遍歷Map對象集合的六種方式代碼示例

    Java中的Map是一種鍵值對映射的數據結構,它提供了一些常用的方法用于獲取、添加、刪除和修改元素,下面這篇文章主要給大家介紹了關于Java遍歷Map對象集合的六種方式,需要的朋友可以參考下
    2024-02-02
  • SpringBoot使用AOP實現統一角色權限校驗

    SpringBoot使用AOP實現統一角色權限校驗

    這篇文章主要介紹了SpringBoot如何使用AOP實現 統一角色權限校驗,文中有詳細的代碼示例講解和操作流程,具有一定的參考價值,需要的朋友可以參考下
    2023-07-07
  • Spring?Boot虛擬線程Webflux在JWT驗證和MySQL查詢性能比較

    Spring?Boot虛擬線程Webflux在JWT驗證和MySQL查詢性能比較

    這篇文章主要為大家介紹了Spring Boot虛擬線程與Webflux在JWT驗證和MySQL查詢上的性能比較,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-09-09
  • SpringBoot整合Netty的流程步驟

    SpringBoot整合Netty的流程步驟

    Netty是一個基于Java的開源網絡應用框架,它提供了高性能、異步事件驅動的網絡編程能力,Netty旨在幫助開發(fā)者構建高性能、高可靠性的網絡應用程序,本文給大家詳細介紹了SpringBoot整合Netty的流程步驟,需要的朋友可以參考下
    2023-09-09

最新評論

金坛市| 准格尔旗| 上饶市| 安多县| 奉新县| 兴化市| 固始县| 开封市| 东源县| 老河口市| 彭阳县| 哈尔滨市| 神农架林区| 马关县| 沁阳市| 盐城市| 宜川县| 恭城| 洪雅县| 鱼台县| 吉首市| 安溪县| 广东省| 讷河市| 新和县| 邹平县| 车险| 塘沽区| 河东区| 龙口市| 鄄城县| 和龙市| 根河市| 长顺县| 甘谷县| 江川县| 通辽市| 松阳县| 远安县| 陆丰市| 安塞县|