Table A
Org ID int not null
Org Name varchar
Table B
AccountID int not null
OrgID int not null
I want to add the AccountID column into Table A from Table B based on the condition
A.Org ID = B.Org.ID
Can anyone help me how to do this?