首頁  >  文章  >  Java  >  springboot中怎麼實現透過後台建立臨時表

springboot中怎麼實現透過後台建立臨時表

王林
王林轉載
2023-05-19 22:50:201893瀏覽

springboot 如何透過後台建立臨時表

其實建立臨時表,跟增刪改查的原理是一樣的,只不過是在xml中寫一個創建臨時表sql語句,xml中並不是隻能寫增刪改查語句的

1,先弄一個xml

在xml中寫一個修改頭標籤,因為是建立的是臨時表,所以表名要變,需要在表名處接收一個參數$(tableName) ,這時xml檔就寫好了

springboot中怎麼實現透過後台建立臨時表

#2,在mapper中寫出對應方法

這時需要在參數中加上註解@Param,只有加上這個註解,在xml中才可以接收到我傳入的參數

springboot中怎麼實現透過後台建立臨時表

3,接下來在service層和Controller層中呼叫這個方法

然後在postman中傳入需要的表名,就可以產生這個表了。

springboot mybatis下暫存資料表的建立和刪除,可用來查重去重

/**
     * 创建临时表
     */
    @Update({"drop temporary table if exists ${tableName};", "create temporary table ${tableName} select doctor_id from crm_speaker where  1=2 "})
    void createTemoraryTable(@Param("tableName") String tableName);
    /**
     * 保存数据到临时表里面以便校验数据重复
     */
    @Insert("<script>" +
            "insert into ${tableName} (doctor_id) values
" +
            "    <foreach collection="list" item="doct" index="index" separator=",">
" +
            "       (" +
            "       #{doct.doctorId,jdbcType=VARCHAR}
" +
            "       )
" +
            "    </foreach>
" +
            "</script>")
    void insertBatchCheckDatas(@Param("list") List<SpeakerDO> dOs, @Param("tableName") String tableName);
    /**
     * 删除临时表
     */
    @Update({"drop temporary table if exists ${tableName}"})
    void dropTemporaryTable(@Param("tableName") String tableName);

以上是springboot中怎麼實現透過後台建立臨時表的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除