其實建立臨時表,跟增刪改查的原理是一樣的,只不過是在xml中寫一個創建臨時表sql語句,xml中並不是隻能寫增刪改查語句的
在xml中寫一個修改頭標籤,因為是建立的是臨時表,所以表名要變,需要在表名處接收一個參數$(tableName) ,這時xml檔就寫好了
這時需要在參數中加上註解@Param,只有加上這個註解,在xml中才可以接收到我傳入的參數
然後在postman中傳入需要的表名,就可以產生這個表了。
/** * 创建临时表 */ @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中文網其他相關文章!