I've to duplicate values from one table to another (identical table schemes). What is better (performance):
- Drop table1 and create as select * from table2
- Delete all rows from table1 and insert all rows from table2
Update: I've made a small test on table with almost 3k rows. Drop and create gives about 60ms vs Delete and insert - about 30ms.