-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFix_Names_in_a_Table.sql
47 lines (35 loc) · 1.11 KB
/
Fix_Names_in_a_Table.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
𝟏𝟔𝟔𝟕. 𝐅𝐢𝐱 𝐍𝐚𝐦𝐞𝐬 𝐢𝐧 𝐚 𝐓𝐚𝐛𝐥𝐞
Table: Users
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| user_id | int |
| name | varchar |
+----------------+---------+
user_id is the primary key (column with unique values) for this table.
This table contains the ID and the name of the user. The name consists of only lowercase and uppercase characters.
Write a solution to fix the names so that only the first character is uppercase and the rest are lowercase.
Return the result table ordered by user_id.
The result format is in the following example.
Example 1:
Input:
Users table:
+---------+-------+
| user_id | name |
+---------+-------+
| 1 | aLice |
| 2 | bOB |
+---------+-------+
Output:
+---------+-------+
| user_id | name |
+---------+-------+
| 1 | Alice |
| 2 | Bob |
+---------+-------+
Solution :
SELECT
user_id,
CONCAT(UPPER(LEFT(name, 1)), LOWER(RIGHT(name, LENGTH(name)- 1))) AS name
FROM Users
ORDER BY user_id;