23rd Sep 2006
Apending text to a field which isn’t empty (mysql)
UPDATE `table`
SET `field` = CONCAT(`field`, ' append text');
Referral text link:
23rd Sep 2006
UPDATE `table`
SET `field` = CONCAT(`field`, ' append text');
Referral text link:
Leave a Reply