I have a table A
col-PK col2 col3 col4
1 a aa aaa
2 b bb bbb
I have created a new table B with three columns only
col-PKB colOne ColTwo
I want below as the Final Output
Table A
col-PK col2 col3 col4
1 a aa aaa
2 b bb bbb
Table B
col-PKB colOne ColTwo
1 a aa
2 b bb
Solution I looked into SO LINK. But I think I need to use select
statement as I have multiple columns
to copy. Please guide me here. I am lost.