How can we normalize email addresses to lowercase?
LOWER() converts string characters to lowercase for canonical storage and matching.
Normalizing email logins, case-insensitive joins, URL slug generation.
SELECT LOWER(email) AS normalized_email
FROM employees;Practice typing production-grade SQL code for LOWER.