concat()函数连接两个字符串。
以首字母大写,其他字母小写的方式显示所有员工的name。
select concat(upper(substring(name,1,1)),lower(substring(name,2))) as name from employee