Create a temporary table

--创建临时表
create global temporary table F_DM_FAULT_SAMPLE1 as select * from F_DM_FAULT_SAMPLE;
--插入数据
insert into  F_DM_FAULT_SAMPLE1  select * from F_DM_FAULT_SAMPLE;

 

Guess you like

Origin blog.csdn.net/fei_yanzi/article/details/90701427