题目
表: Users
1 | +----------------+---------+ |
Write an SQL query 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 query result format is in the following example:
1 | Users table: |
解法
解法一:
SQL
1 | # Write your MySQL query statement below |