반응형

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 |
+---------+-------+
이 문제는 사용자 이름의 형식을 첫 글자는 대문자, 나머지는 소문자로 수정하는 SQL 문제입니다.
select
user_id,
concat(upper(substring(name, 1, 1)),
lower(substring(name, 2, LENGTH(name)))) as name
from users
order by user_id
반응형
'Computer Science > SQL' 카테고리의 다른 글
SQL | LeetCode 1484. 날짜별로 팔린 제품들 정리하기 (GROUP BY + 정렬 + 문자열 조합) (3) | 2025.06.09 |
---|---|
SQL | LeetCode 176. 두 번째 최대값 구하기 (DENSE_RANK) (0) | 2025.06.08 |
SQL | LeetCode 185. DENSE_RANK()로 부서별 Top 3 급여자 구하기 (2) | 2025.06.06 |
SQL | LeetCode 585. 중복된 투자값 & 유일한 위치 조건 만족하는 투자 합계 구하기 (0) | 2025.06.05 |
SQL | LeetCode 602. 가장 친구가 많은 사람 찾기 (0) | 2025.06.04 |
반응형

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 |
+---------+-------+
이 문제는 사용자 이름의 형식을 첫 글자는 대문자, 나머지는 소문자로 수정하는 SQL 문제입니다.
select
user_id,
concat(upper(substring(name, 1, 1)),
lower(substring(name, 2, LENGTH(name)))) as name
from users
order by user_id
반응형
'Computer Science > SQL' 카테고리의 다른 글
SQL | LeetCode 1484. 날짜별로 팔린 제품들 정리하기 (GROUP BY + 정렬 + 문자열 조합) (3) | 2025.06.09 |
---|---|
SQL | LeetCode 176. 두 번째 최대값 구하기 (DENSE_RANK) (0) | 2025.06.08 |
SQL | LeetCode 185. DENSE_RANK()로 부서별 Top 3 급여자 구하기 (2) | 2025.06.06 |
SQL | LeetCode 585. 중복된 투자값 & 유일한 위치 조건 만족하는 투자 합계 구하기 (0) | 2025.06.05 |
SQL | LeetCode 602. 가장 친구가 많은 사람 찾기 (0) | 2025.06.04 |