I have this view: CREATE VIEW AS
SELECT
p.pr_id
,p.arenda
,p.PlotArea
,p.OwnershipTitle
,p.Price
,p.NotaryCosts
,p.AgentFee
,p.CtrNO
,isnull(p.Price,0)-isnull(a.Price,0) as Diferente
,isnull(p.Price,0)+isnull(p.NotaryCosts,0)+isnull(p.AgentFee,0) as TotalCosts
from nbProcuri p
left JOIN nbAchizitii a
ON p.PlotArea = a.PlotArea and p.CtrNo=a.CtrNo
where a.CtrNO is null and a.PlotArea is null
I want to correlate those 2 tables with another one called Cadastrial where I have also a column called PlotArea. The column p.arenda should update itself with value 'yes' if p.PlotArea=c.PlotArea otherwise to fill with no. Is this possible somewhow? Thanks!