• Skip to primary navigation
  • Skip to main content

Tech Honey

The #1 Website for Oracle PL/SQL, OA Framework and HTML

  • Home
  • HTML
    • Tags in HTML
    • HTML Attributes
  • OA Framework
    • Item in OAF
    • Regions in OAF
    • General OAF Topics
  • Oracle
    • statement
    • function
    • clause
    • plsql
    • sql

syntax and example of LOWER Function in oracle sql

Oracle/SQL LOWER Function

November 24, 2012 by techhoneyadmin

Oracle LOWER FunctionSQL LOWER Function is used to convert the letters/alphabets of a string to lower case. Oracle LOWER Function converts all the letters/alphabets of the passed string to lower case.


SQL LOWER Function Syntax

SELECT LOWER(string)
FROM table_name;

In the above Oracle LOWER Function Syntax:-
string is the string whose letters will be converted to lower case.


SQL LOWER Function – Using SQL SELECT Statement Examples

SQL LOWER Function is used with the SQL SELECT Statement.

For example, the Oracle LOWER Function query returns the letters of words in lower case.

SELECT LOWER('Tech Honey') "Oracle LOWER"
FROM dual;

Will return ‘tech honey’

Note: We have aliased LOWER(‘Tech Honey’) as Oracle LOWER.


SQL LOWER Function – Using Upper Case Word Example

SQL LOWER Function can convert a word from UPPER to LOWER case.

For example, the below Oracle LOWER Function query returns the lower case version of the upper case word passed.

SELECT LOWER('TECH HONEY') "Oracle/SQL LOWER Function"
FROM dual;

Will return ‘tech honey’

Note: We have aliased LOWER(‘TECH HONEY’) as Oracle/SQL LOWER Function.


SQL LOWER Function – Using any format of Word Example

Oracle LOWER Function returns all the alphabets in lower case.

For example, the below Oracle LOWER Function query returns all the letters in lower case irrespective of original case of letters.

SELECT LOWER('TECh HOney')
FROM dual;

Will return ‘tech honey’.

Note: We have aliased LOWER(‘TECh HOney’) as “Oracle/SQL LOWER Function”.


Filed Under: function Tagged With: how to use LOWER Function in oracle database query, how to use LOWER Function in oracle plsql, how to use LOWER Function in oracle sql, LOWER Function in oracle plsql, LOWER Function in oracle sql, LOWERPLSQL, syntax and example of LOWER Function in oracle database query, syntax and example of LOWER Function in oracle plsql, syntax and example of LOWER Function in oracle sql, using LOWER Function in oracle database query, using LOWER Function in oracle plsql, using LOWER Function in oracle sql

Copyright © 2025 · Parallax Pro on Genesis Framework · WordPress · Log in