What is the best approach for adding a column to an existing table with values ββfrom the join ... For example:
If I join table A to table B ...
Select A.Column1, A.Column2, B.Column1, B.Column2, B.Column3 FROM A INNER JOIN B ON A.Column1 = B.Column2
Basically, I just want to copy the column that exists in table B to table A, how can I add a new A.Column3 to table A to match B.Column3 based on the join?
dorianpc
source share