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