Skip to content

Commit

Permalink
Time: 579 ms (72.16%), Space: 0B (100.00%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Sep 27, 2024
1 parent cb3f9d7 commit 30e4c80
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 1667-fix-names-in-a-table/1667-fix-names-in-a-table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Write your MySQL query statement below
SELECT user_id, CONCAT(UPPER(SUBSTRING(name,1,1)),LOWER(SUBSTRING(name,2,LENGTH(name)-1))) AS name FROM Users ORDER BY user_id;

0 comments on commit 30e4c80

Please sign in to comment.