标签: performance
我在table1中有数据,并且要加载到table2。这是以
Insert into table2 (select a,b,c from table1 where process_dt ='28-06-2016')
这需要花费很多时间,所以要调整它有任何方法。
答案 0 :(得分:0)
您可以使用SELECT INTO:
SELECT a,b,c INTO table2 FROM table1;