Here is two Table:
tab1 tab2
col1 col2 ... col1 col2 ...
1 A 1 C
1 B 1 D
1 C 1 E
In tab1 col1 and col2 are primary key.
I would like to insert the value from tab2 into tab1. What will be the WHERE clause to skip the first row of tab2 and insert the two other rows.
Thank you.
tab1 tab2
col1 col2 ... col1 col2 ...
1 A 1 C
1 B 1 D
1 C 1 E
In tab1 col1 and col2 are primary key.
I would like to insert the value from tab2 into tab1. What will be the WHERE clause to skip the first row of tab2 and insert the two other rows.
Thank you.