This function converts all characters into lower case.
The return value has the same data type as argument CHAR or VARCHAR2 type
Syntax: LOWER(column/expression)
Example:
The return value has the same data type as argument CHAR or VARCHAR2 type
Syntax: LOWER(column/expression)
Example:
Use of LOWER Function |
---|
SELECT 'ORACLE' AS String, LOWER ('ORACLE') AS LOWER FROM DUAL; |
SELECT LOWER(Ename) Ename, LOWER(Job) Job, Sal, HireDate FROM EMP; |
SELECT LOWER(Ename)||' is Working As '||Job Employee FROM EMP; |
SELECT LOWER(Ename)||' is Working As '||Job Employee FROM EMP WHERE LOWER(Job) = 'manager'; |
No comments:
Post a Comment