标签:临时 表示 bsp rop comm pos col res 事务
一、根据原表创建临时表
CREATE TEMP TABLE temp_testbulkcopy as (select * from testbulkcopy limit 0);
二、本次使用完临时表后自动删除
CREATE TEMP TABLE temp_testbulkcopy ON COMMIT DROP as (select * from testbulkcopy limit 0);
ON COMMIT DROP 表示本次事务提交后就自动删掉
标签:临时 表示 bsp rop comm pos col res 事务
原文地址:https://www.cnblogs.com/wjx-blog/p/13154272.html