Oracle UPPER

Function Description

Function UPPER returns char in uppercase for all letters.

Examples

SELECT 'John', UPPER('John')
  FROM dual;

Result: John  JOHN
This entry was posted in Oracle SQL Functions. Bookmark the permalink.