Transform the name column so that only the first character is capitalized and the rest are lowercase.
| user_id(INTEGER) | name(VARCHAR) |
|---|---|
| 1 | aLICE |
| 2 | bob |
| 3 | CHARLIE |
| region_id(INTEGER) | region_name(VARCHAR) |
|---|---|
| 1 | North America |
| user_id(INTEGER) | email_opt_in(BOOLEAN) |
|---|---|
| 1 | true |
| user_id(INTEGER) | name(VARCHAR) |
|---|---|
| 1 | Alice |
| 2 | Bob |
| 3 | Charlie |