springbootmybatis下临时表的创建和删除,可用于查重去重
springbootmybatis下临时表的创建和删除,可⽤于查重去重/**
* 创建临时表
*/
北京贷款利率@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\n" +
"    <foreach collection=\"list\" item=\"doct\" index=\"index\" separator=\",\">\n" +
"      (" +
迈克尔杰克逊 布兰妮
"      #{doct.doctorId,jdbcType=VARCHAR}\n" +
人物介绍"      )\n" +
"    </foreach>\n" +
元旦联欢会的宣传语"</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);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。