1 Star 0 Fork 0

逸扬/leetcode-hub-mysql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lc-1667.test 527 Bytes
一键复制 编辑 原始数据 按行查看 历史
# 1667. 修复表中的名字
# https://leetcode-cn.com/problems/fix-names-in-a-table/
# SQL架构
Create table If Not Exists Users (user_id int, name varchar(40));
Truncate table Users;
insert into Users (user_id, name) values ('1', 'aLice');
insert into Users (user_id, name) values ('2', 'bOB');
# Write your MySQL query statement below
select
user_id,
concat(
upper(substring(name, 1, 1)),
lower(substring(name, 2))
) as name
from
Users
order by
user_id;
# clean-up
drop table Users;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gdut_yy/leetcode-hub-mysql.git
git@gitee.com:gdut_yy/leetcode-hub-mysql.git
gdut_yy
leetcode-hub-mysql
leetcode-hub-mysql
master

搜索帮助