Very innocent question
If we have an array of items in a table cell, is there any way to append data to it without having the need to fetch the data of the whole row to get its content, in order to finally push the updated data to the cell?
I have a column named content, which is an array of file identifiers, and I want to append some new data to it.
Is there any clean way to do this action? Or we need to perform a select()
before an update()
?