initcap dans mysql

RETURN concat( 
  upper(substring(my_string,1,1)),
  lower(substring(my_string,2)) 
);
VasteMonde