uppercase string sql code example
Example 1: uppercase and lowercase in sql
select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
Example 2: get all name uppercase in sql
SELECT UPPER(FIRST_NAME) , LOWER(LAST_NAME)
FROM CUSTOMERS ;