Working in R and trying to add a column to an existing MonetDBLite table by running a left join with a second table using the following code:
dbSendQuery(mdb, "UPDATE table1
SET table1.variable = table2.variable
FROM table1 LEFT JOIN table2 ON table1.identifier = table2.identifier;")
Returns the error:
Server says 'syntax error, unexpected '.', expecting '=' in: "update table1
set table1."
Does MonetDB not support the dot delimiter to reference a field within a table? Many thanks for any insights.