题目描述
编写一个 SQL 查询来修复名字,使得只有第一个字符是大写的,其余都是小写的。
题目链接
修复表中的名字
答案:
select user_id,
CONCAT(Upper(left(name,1)),Lower(substr(name,2))) name
题目描述
编写一个 SQL 查询来修复名字,使得只有第一个字符是大写的,其余都是小写的。
题目链接
修复表中的名字
答案:
select user_id,
CONCAT(Upper(left(name,1)),Lower(substr(name,2))) name