Complete the code to convert the column 'name' to uppercase.
SELECT [1](name) FROM employees;The UPPER function converts all letters in the string to uppercase.
Complete the code to convert the column 'city' to lowercase.
SELECT [1](city) FROM locations;The LOWER function converts all letters in the string to lowercase.
Fix the error in the code to capitalize the first letter of each word in 'title'.
SELECT [1](title) FROM books;The INITCAP function capitalizes the first letter of each word in the string.
Fill both blanks to convert 'description' to lowercase and trim spaces from the right.
SELECT [1]([2](description)) FROM products;
First, LOWER converts text to lowercase, then RTRIM removes trailing spaces.
Fill all three blanks to convert 'author' to uppercase, trim spaces from the left, and capitalize the first letter of each word.
SELECT [1]([2]([3](author))) FROM writers;
The order is: first capitalize each word with INITCAP, then remove left spaces with LTRIM, and finally convert all letters to uppercase with UPPER.