hello and thanks in advance for any help.
I am getting an error: 'Syntax Error (missing operator) in query expression' and I do not know why... any ideas?
This is my query:
UPDATE
table1
SET
table1.country_name = table2.COUNTRY,
table1.city = table2.CITY ,
table1.state = table2.STATE
FROM
( table1
inner join
table2
ON
table2.SITE_ID = table1.SiteID )
where
table1.country_name is null;