
SQL | LeetCode 1667. 이름 포맷 통일하기 (CONCAT, UPPER, LOWER)
·
Computer Science/SQL
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..