Leetcode in Java && Oracle
422 subscribers
8 photos
397 files
400 links
Second channel: @codeforces_java

Let's Develop Together!
Download Telegram
image_2022-04-23_15-16-31.png
20 KB
#N1667. Fix Names in a Table
problem link
#solution
select user_id, concat(upper(substr(name, 1, 1)), lower(substr(name, 2)))
as name from users
order by user_id;