PLSQL | LOWER Function Last Updated : 24 Sep, 2019 Comments Improve Suggest changes Like Article Like Report The PLSQL LOWER function is used for converting all letters in the specified string to lowercase. 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 LOWER 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: LOWER( string ) Parameters Used: string - It is used to specify the string which needs to be converted. Supported Versions of Oracle/PLSQL: Oracle 12c Oracle 11g Oracle 10g Oracle 9i Oracle 8i Example-1: DECLARE Test_String string(20) := 'Geeksforgeeks'; BEGIN dbms_output.put_line(LOWER(Test_String)); END; Output: geeksforgeeks Example-2: DECLARE Test_String string(20) := 'GEEKSFORGEEKS'; BEGIN dbms_output.put_line(LOWER(Test_String)); END; Output: geeksforgeeks Example-3: DECLARE Test_String varchar2(30) := 'GEEKSFORGEEKS12345'; BEGIN dbms_output.put_line(LOWER(Test_String)); END; Output: geeksforgeeks12345 Comment More infoAdvertise with us Next Article PLSQL | LOWER Function S Shubrodeep Banerjee Follow Improve Article Tags : SQL SQL-PL/SQL Similar Reads PLSQL | LOG Function The PLSQL LOG function is used for returning the logarithm of n base m. The LOG function accepts two parameters which are used to calculate the logarithmic value. The LOG function returns a value of the numeric data type. This function takes as an argument any numeric data type as well as any non-nu 2 min read PLSQL | LN Function The LN function is an inbuilt function in PLSQL which is used to return the natural logarithm of a given input number. The natural logarithm of a number is the logarithm of that number to the base e, where e is the mathematical constant approximately equal to 2.718. This is written using the notatio 2 min read PLSQL | LEAST Function The LEAST is an inbuilt function in PLSQL which is used to return the least value from a given list of some expressions. These expressions may be numbers, alphabets etc. Syntax: LEAST(exp1, exp2, ... exp_n) Parameters Used: This function accept some parameters like exp1, exp2, ... exp_n. These each 2 min read PLSQL | MOD Function The MOD function is an inbuilt function in PLSQL which is used to return the remainder when a is divided by b. Its formula is m - n * \left\lfloor\dfrac{m}{n}\right\rfloor. Syntax: MOD(a, b) Parameters Used: This function accepts two parameters a and b. This function gives remainder as the output wh 2 min read PL/SQL Functions PL/SQL functions are reusable blocks of code that can be used to perform specific tasks. They are similar to procedures but must always return a value. A function in PL/SQL contains:Function Header: The function header includes the function name and an optional parameter list. It is the first part o 4 min read Like