Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment faire un formatage 'Correctif' d'une colonne mysql ?

Vous pouvez combiner CONCAT et SUBSTRING :

CONCAT(UCASE(SUBSTRING(`fieldName`, 1, 1)), LOWER(SUBSTRING(`fieldName`, 2)))