concat()函数连接两个字符串。

以首字母大写,其他字母小写的方式显示所有员工的name。

select concat(upper(substring(name,1,1)),lower(substring(name,2))) as name from employee

 

 posted on 2024-04-07 09:11  会飞的金鱼  阅读(23)  评论(0)    收藏  举报