Hi,
I'm trying to add some text to an existing entry in the table. As far as I can tell, I need to use concat. Can you use the concat command to update a column entry, using that entry as an argument to the concat function? This is what I want to try and do...
UPDATE MyTable SET update_column = concat("new string", update_column) Where identifier IN (list_of_identifiers)
Is this correct us of concat??
Thanks.
cteare
I'm trying to add some text to an existing entry in the table. As far as I can tell, I need to use concat. Can you use the concat command to update a column entry, using that entry as an argument to the concat function? This is what I want to try and do...
UPDATE MyTable SET update_column = concat("new string", update_column) Where identifier IN (list_of_identifiers)
Is this correct us of concat??
Thanks.
cteare