Hi,
I have one task where i need to insert around 1 lac rows in a table by selecting the data from another table. I tried with
' INSERT INTO table1 (col1,col2)
SELECT col3, col4 FROM table2 WHERE cond1 = something; '
This will work if structure of table1 and table2 are same. But in our requirement we have different table structures. Can anyone help me out with this
Thanks