select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
SELECT upper('Hello World'); -- HELLO WORLD
SELECT lower('Hello World'); -- hello world
SELECT UPPER(FIRST_NAME) , LOWER(LAST_NAME)
FROM CUSTOMERS ;
LOWER/UPPER
LOWER wandelt eine String in eine in Kleinbuchstaben um.
UPPER ist das Gegenstück zu LOWER, und wandelt den String
in Grossbuchstaben um.
SELECT LOWER (expression)
SELECT UPPER (expression)