/ Published in: MySQL
Notice the space in the appended portion, otherwise you just tack right on with no separation. If your original value is null you can use this: CONCAT(IFNULL(emaildata, ''),' $emaildata') This will add it on to a null value as the first value in the entry
Expand |
Embed | Plain Text
UPDATE tbl_NMR_users SET `tbl_NMR_users_FirstName` = CONCAT(`tbl_NMR_users_FirstName`,' TESTING') WHERE `tbl_NMR_users_RegNumber` = '156330';
You need to login to post a comment.
