de_notes

📚 UPPER & LOWER

The UPPER and LOWER functions are used in SQL to convert the case of text.
They are helpful for standardizing data for searches, comparisons, or presentation.


🛠️ Basic Syntax

SELECT UPPER(column_name)
FROM table_name;

SELECT LOWER(column_name)
FROM table_name;

Example

SELECT UPPER(first_name) AS uppercase_name
FROM employees;
SELECT LOWER(email) AS normalized_email
FROM users;

Key Points

Additional Example

SELECT LOWER(CONCAT(first_name, last_name)) AS combined_name
FROM customers;

🎥 Video Notes


📝 Problem Description

Describe the problem, challenge, or topic discussed in a video related to SELECT FROM.
What concept was explained or what exercise was solved?


DataBase Given


💻 My SQL Code

-- Write your SQL code attempt or solution related to SQL COMMAND
SQL COMMAND

🧠 Solution Code / Explanation

SQL COMMAND

Explanation - Explain what you learned, any key takeaways, or how you solved the problem related to COMMAND._


⬅️ Previous: LEFT & RIGHT Next ➡️ EXTRACT