91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于Java怎么用Mybatis實現oracle批量插入及分頁查詢

發布時間:2022-07-02 10:09:38 來源:億速云 閱讀:391 作者:iii 欄目:開發技術

這篇文章主要介紹“基于Java怎么用Mybatis實現oracle批量插入及分頁查詢”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“基于Java怎么用Mybatis實現oracle批量插入及分頁查詢”文章能幫助大家解決問題。

1、單條數據insert

<!--簡單SQL-->
insert into userinfo (USERID, USERNAME, AGE) values(1001,'小明',20);

<!--Mybatis寫法1,有序列,主鍵是自增ID,主鍵是序列-->
<insert id="insert" parameterType="com.zznode.modules.bean.UserInfo">
    <selectKey resultType="java.lang.Integer" order="BEFORE" keyProperty="userid">
      SELECT userinfo_userid_seq.nextval as userid from dual
    </selectKey>
    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)
    values (#{userid}, #{username}, #{age})
</insert>

<!--Mybatis寫法2,無序列,主鍵是uuid,字符串-->
<insert id="insert" parameterType="com.zznode.modules.bean.UserInfo">
    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE, TIME)
    values (#{userid}, #{username}, #{age}, sysdate)
</insert>

2、批量數據批量insert

insert all into 的方式返回值由最后的select 決定:

<!--簡單SQL, 方法1-->
INSERT ALL 
INTO userinfo (USERID, USERNAME, AGE) values(1001,'小明',20)
INTO userinfo (USERID, USERNAME, AGE) values(1002,'小紅',18)
INTO userinfo (USERID, USERNAME, AGE) values(1003,'張三',23)
select 3 from dual;
<!--簡單SQL, 方法2-->
begin
    insert into userinfo (USERID, USERNAME, AGE) values(1001,'小明',20);
    insert into userinfo (USERID, USERNAME, AGE) values(1001,'小紅',18);
    insert into userinfo (USERID, USERNAME, AGE) values(1001,'張三',23);
end;
<!--簡單SQL, 方法3-->
insert into userinfo (USERID, USERNAME, AGE) 
select 1001, '小明', 20 from dual union all
select 1002, '小紅', 18 from dual union all
select 1003, '張三', 23 from dual
<!--Mybatis寫法1,無序列-->
<insert id="insertBatch" parameterType="java.util.List">
    INSERT ALL 
    <foreach collection="list" index="index" item="item">
        INTO userinfo (USERID, USERNAME, AGE)
        VALUES (#{item.userid}, #{item.username}, #{item.age})
    </foreach>
    select list.size from dual
</insert>
<!--Mybatis寫法2,無序列-->
<insert id="insertBatch">
    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)
    <foreach collection="list" item="item" index="index" separator="union all">
        <!-- <foreach collection="list" item="item" index="index" separator="union all" open="(" close=")"> -->
        <!-- (select #{item.userid}, #{item.username}, #{item.age} from dual) -->
        
        <!-- 上面帶括號,下面不帶括號,都可以,少量數據不帶括號效率高 -->
        select #{item.userid}, #{item.username}, #{item.age} from dual
    </foreach>
</insert>    
<!--Mybatis寫法3,有序列-->
<insert id="insertBatch">
    insert into EPG_ALARM_INFO (USERID, USERNAME, AGE)
    SELECT userinfo_userid_seq.nextval, m.* FROM (
    <foreach collection="list" item="item" index="index" separator="union all">
        select #{item.username}, #{item.age} from dual
    </foreach>
    ) m
</insert>

3、創建序列

  • minvalue n (/nominvalue):最小值為n

  • maxvalue n (/nomaxvalue):最大值為n

  • start with n:從n開始計數

  • increment by n:每次增加n

  • cache n (/nocache):緩存n個sequence值 / 不緩存,如果緩存,則會有跳號的危險

  • noorder (/order):不保證序列號按順序生成請求

  • cycle n (/nocycle):如果到達最大值n后,再次從start with n開始

  • currval:序列的當前值,新序列必須使用一次nextval 才能獲取到值,否則會報錯

  • nextval:表示序列的下一個值。新序列首次使用時獲取的是該序列的初始值,從第二次使用時開始按照設置的步進遞增

刪除序列語法: drop sequence seq_表名

<!--
create sequence 序列名     
       increment by 1 	--每次增加幾個,我這里是每次增加1
       start with 1   	--從1開始計數
       nomaxvalue      	--不設置最大值
       nocycle         	--一直累加,不循環
       nocache;        	--不建緩沖區
在插入語句中調用:序列名.nextval  生成自增主鍵。
-->
<!--創建序列-->
create sequence SEQ_USERINFO
minvalue 1
maxvalue 9999999999
start with 1
increment by 1
nocache;

<!--刪除序列-->
drop sequence SEQ_USERINFO

4、oracle分頁查詢

前端與后端交互,分頁查詢

service業務實現:

public List<TBadUserW> queryPageBadUserInfo(TbadUserQuery queryModel) {
    log.info("分頁查詢請求參數,{}", JSON.toJSONString(queryModel));
    int pageNum = queryModel.getPageNum(); // 開始頁
    int pageSize = queryModel.getPageSize(); // 每頁數量
    queryModel.setStart((pageNum - 1) * pageSize); // 開始行數 (+1后)
    queryModel.setEnd(pageNum * pageSize); // 結束行數
    List<TBadUserW> beans = badUserWDao.queryPageBadUserInfo(queryModel);
    log.info("最終查詢數量:", beans.size());
    return beans;
}

mapper.xml文件:

<select id="queryPageInfo" parameterType="com.zznode.test.bean.TbadUserQuery"
        resultMap="BaseResultMap" >
    SELECT tt.*	FROM
    (
    	<!--前端分頁需要 total總記錄-->
        SELECT t.*, ROWNUM rown, COUNT (*) OVER () total FROM
        (
            select <include refid="Base_Column_List"/> from T_BAD_USER_W
            <where>
                <if test="city != null and city !=''">
                    and city = #{city}
                </if>
                <if test="county != null and county != ''">
                    and county = #{county}
                </if>
                <if test="startTime != null and startTime !=''">
                    and loadtime >= to_date(#{startTime} , 'yyyy-mm-dd hh34:mi:ss')
                </if>
                <if test="endTime != null and endTime !=''">
                    and loadtime <![CDATA[<=]]> to_date(#{endTime} , 'yyyy-mm-dd hh34:mi:ss')
                </if>
            </where>
        )t
    )tt
    where tt.rown > #{start} and tt.rown <![CDATA[<=]]> #{end}
</select>

后端海量數據導出,批量查詢

service業務實現:

public List<TBadUserW> queryPageBadUserInfo(TbadUserQuery queryModel) {
    log.info("分頁查詢請求參數,{}", JSON.toJSONString(queryModel));
    List<TBadUserW> result = new ArrayList<>();
    int pageNum = queryModel.getPageNum(); // 開始頁
    int pageSize = queryModel.getPageSize(); // 每頁數量(可以每頁設置為200/500/1000),每次查詢的條數
    boolean searchAll = true;
    while (searchAll){
        queryModel.setStart((pageNum - 1) * pageSize); // 開始行數 (+1后)
        queryModel.setEnd(pageNum * pageSize); // 結束行數
        List<TBadUserW> beans = badUserWDao.queryPageBadUserInfo(queryModel);
        if (null == beans || beans.size() < pageSize) {
            searchAll = false;
        }
        if (CollectionUtils.isNotEmpty(beans)) {
            result.addAll(beans);
        }
        pageNum++;
    }
    log.info("最終查詢數量:", result.size());
    return result;
}

mapper.xml文件編寫

<!--這種寫法是比較高效的分批查詢方法,分批不需要查詢total總量,不支持total-->
<select id="queryPageInfo" parameterType="com.zznode.test.bean.TbadUserQuery"
        resultMap="BaseResultMap" >
    SELECT tt.*	FROM
    (
        SELECT t.*, ROWNUM rown FROM
        (
            select <include refid="Base_Column_List"/> from T_BAD_USER_W
            <where>
                <if test="city != null and city !=''">
                    and city = #{city}
                </if>
                <if test="county != null and county != ''">
                    and county = #{county}
                </if>
                <if test="startTime != null and startTime !=''">
                    and loadtime >= to_date(#{startTime} , 'yyyy-mm-dd hh34:mi:ss')
                </if>
                <if test="endTime != null and endTime !=''">
                    and loadtime <![CDATA[<=]]> to_date(#{endTime} , 'yyyy-mm-dd hh34:mi:ss')
                </if>
            </where>
        )t where ROWNUM <![CDATA[<=]]> #{end}
    )tt
    where tt.rown > #{start}
</select>

關于“基于Java怎么用Mybatis實現oracle批量插入及分頁查詢”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼勒克县| 聂荣县| 宁武县| 陈巴尔虎旗| 商洛市| 双峰县| 温宿县| 遂溪县| 太和县| 琼结县| 淮北市| 桂阳县| 富蕴县| 河西区| 宝山区| 恩平市| 灌阳县| 祁东县| 郧西县| 天等县| 西峡县| 炎陵县| 资溪县| 聊城市| 如皋市| 左云县| 湟源县| 湘潭市| 天津市| 汉川市| 通辽市| 文昌市| 固阳县| 昌都县| 东乌珠穆沁旗| 连城县| 吕梁市| 聂拉木县| 新余市| 达州市| 抚远县|