Skip to content

Commit c5007c5

Browse files
authored
Create 1667-fix-names-in-a-table.sql
1 parent 9676d29 commit c5007c5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

1667-fix-names-in-a-table.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Write your MySQL query statement below
2+
SELECT
3+
user_id,
4+
concat(upper(substr(name,1,1)),lower(substr(name,2))) as name
5+
FROM Activity
6+
ORDER BY 1 ASC;

0 commit comments

Comments
 (0)