SPLIT_PART
INITCAP
TO_CHAR
Converts the first letter of each word to uppercase.
INITCAP(str)
Enter values below to update the example in real time.
full_name
normalized_name
customers
SELECT INITCAP(LOWER(full_name)) AS normalized_name FROM customers;