Hello I have filed that I want to update using PHP script using $query->update, the field type is select with Multiple selection ON.
In database I see the data is like this ["0","1","3"]
I made some tries but it’s not possible to add or remove just one value
For example, I can replace ["0","1","3"] with ["2"] but I cannot add the 2 in exist values and be ["0","1","2","3"]
There any way to add or remove a single value?
Thanks