OriginalPostID-85529
Discussion posts and replies are publicly visible
Yes, it seems that array values are not handled correctly by the Query Database smart service.
Here is a query that I have used to update a table in MySQL:
UPDATE `TABLE_NAME` SET `COLUMN_NAME`= 'new value' WHERE INSTR(concat(',', ac!IDs, ','), concat(',', `TABLE_NAME`.`ID`, ',')) > 0
where ac!IDs is TEXT, single type. And ac!IDs is configured as =joinarray(pv!idValueList,",")
where idValueList is a process variable of type number, multi-valued (for example {100, 200})