Skip to content

1667-fix-names-in-a-table

DevGod
DevGod
Elf Vtuber
# Write your MySQL query statement below
SELECT user_id, CONCAT(
UPPER(LEFT(name,1)),
LOWER(SUBSTR(name, 2))
) AS name
FROM Users
ORDER BY user_id;