mysql add text to existing field

Solutions on MaxInterview for mysql add text to existing field by the best coders in the world

showing results for - "mysql add text to existing field"
Lotta
26 Nov 2019
1UPDATE categories SET code = CONCAT(code, '_standard') WHERE id = 1;
2