1667. Fix Names in a Table
select user_id, concat(upper(substring(name,1,1)), lower(substring(name,2))) as name from Users order by user_id asc; select user_id, concat(upper(left(name,1)), lower(substring(name,2))) as name from Users order by user_id asc;