12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.qunzhixinxi.hnqz.admin.mapper.SysUserAreaTempMapper">
- <update id="createTempTable">
- CREATE GLOBAL TEMPORARY TABLE ${tableName}
- (
- `id` BIGINT NOT NULL
- )
- ON COMMIT PRESERVE ROWS
- </update>
- <insert id="batchInsertTempData">
- <foreach collection="list" item="item">
- INSERT INTO ${tableName}(id) VALUES (#{item});
- </foreach>
- COMMIT ;
- </insert>
- <delete id="dropTempTable">
- DROP TABLE ${tableName}
- </delete>
- </mapper>
|