Hi everyone, so I am trying to use the MERGE command but something is wrong with my syntax. I have read documentation here, here and there, but something is still missing.
MERGE INTO "T_Contacts"
USING "T_Villes"
ON "T_Contacts"."Ville"="T_Villes"."Ville"
WHEN MATCHED THEN UPDATE SET "T_Contacts"."ID_ville"="T_Villes"."ID"
and the error message:
4: Unexpected token: MERGE in statement [MERGE] ./connectivity/source/drivers/jdbc/Object.cxx:175
What is incorrect here?
Thank you for your help!