mysql创建临时表以及springboot mybatis 操作临时表

一:语句

drop table if exists a_temp;
create table a_temp
select  content from article

 

二: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("")
    void insertBatchCheckDatas(@Param("list") List dOs, @Param("tableName") String tableName);


    /**
     * 删除临时表
     */
    @Update({"drop temporary table if exists ${tableName}"})
    void dropTemporaryTable(@Param("tableName") String tableName);

 

你可能感兴趣的:(mybaitis,mysql/sqlserver,springBoot)