I have two tables table_A and Table_B
Table_A
ID Col1 Col2 Col3
123 2 A JIM
456 2 A JACK
Table_B
ID Col1 Col2 Col3
123 1 B KIM
456 1 B LEE
Query Using:
Update Table_A a, Table_B b
Set a.Col1 = b.Col1,
a.Col2 = b.Col2,
a.Col3 = b.Col3
where a.ID = b.ID
Current Results: Getting error
Required Results:
I want to update value of Table 1 with value of Table 2.