在 R 中工作并尝试通过使用以下代码运行与第二个表的左连接来将列添加到现有的 MonetDBLite 表:
dbSendQuery(mdb, "UPDATE table1
SET table1.variable = table2.variable
FROM table1 LEFT JOIN table2 ON table1.identifier = table2.identifier;")
返回错误:
Server says 'syntax error, unexpected '.', expecting '=' in: "update table1
set table1."
MonetDB 不支持点分隔符来引用表中的字段吗?非常感谢您的任何见解。