All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1601_1700.s1667_fix_names_in_a_table.readme.md Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
1667\. Fix Names in a Table

Easy

SQL Schema

Table: `Users`

    +----------------+---------+
    | 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. 

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.

**Example 1:**

**Input:**

    Users table:
    +---------+-------+
    | user_id | name  |
    +---------+-------+
    | 1       | aLice |
    | 2       | bOB   |
    +---------+-------+

**Output:**

    +---------+-------+
    | user_id | name  |
    +---------+-------+
    | 1       | Alice |
    | 2       | Bob   |
    +---------+-------+ 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy