Het is bijna hetzelfde, je hoeft alleen te veranderen om de CONCAT() functie te gebruiken in plaats van de + operator :
UPDATE tb_Company
SET CompanyIndustry = CONCAT(UCASE(LEFT(CompanyIndustry, 1)),
SUBSTRING(CompanyIndustry, 2));
Dit zou hello
. worden naar Hello
, wOrLd
naar WOrLd
, BLABLA
naar BLABLA
, enz. Als u de eerste letter in hoofdletters en in kleine letters wilt gebruiken, hoeft u alleen de LCASE-functie te gebruiken:
UPDATE tb_Company
SET CompanyIndustry = CONCAT(UCASE(LEFT(CompanyIndustry, 1)),
LCASE(SUBSTRING(CompanyIndustry, 2)));
Merk op dat UPPER en UCASE hetzelfde doen.