Skip to content
Advertisement

How can I append a string to an existing field in MySQL?

I want to update the code on all my record to what they currently are plus _standard any ideas?

So for example if the codes are apple_1 and apple_2 I need them to be apple_1_standard and apple_2_standard

Before:

Psuedo Query:

Expected result:

Advertisement

Answer

You need to use the CONCAT() function in MySQL for string concatenation:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement