1667. Fix Names in a Table
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| user\_id | int |
| name | varchar |
+----------------+---------+
user\_id is the primary key for this table.
This table contains the ID and the name of the user. The name consists of only lowercase and uppercase characters.Users table:
+---------+-------+
| user\_id | name |
+---------+-------+
| 1 | aLice |
| 2 | bOB |
+---------+-------+
Result table:
+---------+-------+
| user\_id | name |
+---------+-------+
| 1 | Alice |
| 2 | Bob |
+---------+-------+ac
Last updated