We have this in a table:
TABLE A
ID DAY CALL
mdma 1 A
mdma2 2 B
mdma3 3 C
So I want to update all fields CALL based in their ID.
UPDATE A SET CALL = 'D' WHERE ID IN ('mdma','mdma2', 'mdma3');
I'm getting errors on DataStudio, and I cannot run it. And we have a debate with this WHERE IN clause. Is this a valid argument or not?
Thank you in advance.
Edit:
ERROR:
An unexpected token ")" was found following "mdma',
". Expected tokens may include: "<value_expr>".. SQLCODE=-104, SQLSTATE=42601, DRIVER=4.16.53