ここであなたのサポートが必要です。これを update ステートメントに変更したいです。E.Age のすべての null 値を PersonDeatl の Birthage で更新したいです。 EmpRetもありません。みんなありがとう
select distinct * from ((Select
E.EmployeeId,E.Address,E.City,E.Zip,E.State,E.Age
from Employee E join
EmpRet R
on E.EmployeeId=R.EmployeeId
where R.Dscription='Age not Qualify' and E.Age is null)Ag inner join
(select address,city,zip,state,BirthAge from PersonDeatl)Pd
on ag.Address=Pd.Address and ag.City=Pd.City and ag.zip=Pd.Zip)