在过程中查询调优以加快执行速度

时间:2016-06-28 09:05:43

标签: performance

我在table1中有数据,并且要加载到table2。这是以

完成的
Insert into table2 
(select a,b,c from table1 where process_dt ='28-06-2016')

这需要花费很多时间,所以要调整它有任何方法。

1 个答案:

答案 0 :(得分:0)

您可以使用SELECT INTO:

SELECT a,b,c INTO table2 FROM table1;