PLSQL | UPPER Function
The PLSQL UPPER function is used for converting all letters in the specified string to uppercase. If there are characters in the string that are not letters, they are unaffected by this function.
The char to be converted can be any of the datatypes such as CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB. The value returned by the UPPER function is the same datatype as char. The database sets the case of the characters based on the binary mapping defined for the underlying character set.
Syntax:
UPPER( string )
Parameters Used:
string – It is used to specify the string which needs to be converted.
Return Value:
The UPPER function in PLSQL returns a string value.
Supported Versions of Oracle/PLSQL
- Oracle 12c
- Oracle 11g
- Oracle 10g
- Oracle 9i
- Oracle 8i
Example-1: Passing a string as an argument with first character in uppercase and rest of the characters in lowercase.
DECLARE Test_String string(20) := 'Geeksforgeeks'; BEGIN dbms_output.put_line(UPPER(Test_String)); END;
Output:
GEEKSFORGEEKS
Example-2: Passing a string as an argument with all the characters in lowercase.
DECLARE Test_String string(20) := 'geeksforgeeks'; BEGIN dbms_output.put_line(UPPER(Test_String)); END;
Output:
GEEKSFORGEEKS
Example-3: Passing a string as an argument with numeric values and characters in lowercase.
DECLARE Test_String string(20) := '123geeksforgeeks123'; BEGIN dbms_output.put_line(UPPER(Test_String)); END;
Output:
123GEEKSFORGEEKS123
Advantage:
The UPPER function accepts any of the datatypes CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB in the input_string.
Recommended Posts:
- PLSQL | TAN Function
- PLSQL | MOD Function
- PLSQL | LEAST Function
- PLSQL | LOG Function
- PLSQL | COS Function
- PLSQL | EXP Function
- PLSQL | SIN Function
- PLSQL | CHR Function
- PLSQL | LN Function
- PLSQL | ABS Function
- PLSQL | LPAD Function
- PLSQL | TANH Function
- PLSQL | LOWER Function
- PLSQL | ADD_MONTHS Function
- PLSQL | LTRIM Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



