Я обновляю таблицу, но получаю ошибки. Ниже мой код:
update dim set dim.firstname=x.firstname
from
db1.new_table1 as dim join db2.table2 as x on (x.recid=dim.recid)
where dim.firstname<>x.firstname;
Это моя ошибка:
Error while compiling statement: FAILED: ParseException line 17:64 mismatched input '.' expecting = near 'dim' in update statement
Любые предложения о том, почему я продолжаю получать этоошибка?