https://randomsrsolutions.blogspot.com/2018/05/using-upper-lower-and-initcap-in-plsql.html
Converts Mixed Case or Lower Case Character strings to Uppercase
select UPPER('Pakistan') from dual;
PAKISTAN
Converts Mixed Case or UpperCase Character strings to Lowercase
select LOWER('PAKISTAN') from dual;
pakistan
Converts the first letter of each Word to Uppercase and remaining Letters to Lowercase
select INITCAP('PAKISTAN') from dual;
Pakistan
--------------------------------------------------------------------------------------------------
select ENAME from EMP where ENAME = 'smith';
no rows returned
select ENAME from EMP where ENAME = UPPER('smith');
SMITH
select ENAME from EMP where LOWER(ENAME) = 'smith';
SMITH
select ENAME from EMP where UPPER(ENAME) = 'smith';
no rows returned
select ENAME from EMP where UPPER(ENAME) = UPPER('smith');
SMITH
Subscribe to:
Post Comments (Atom)
XLA to GL Link
https://plsqlquery.blogspot.com/2025/12/xla-to-gl-link.html SELECT acr.cash_receipt_id, acr.receipt_number, ...
-
https://plsqlquery.blogspot.com/2018/05/using-outer-joins-in-plsql-query.html We use Outer Join when mismatched Values to be displayed ...
-
https://plsqlquery.blogspot.com/2018/05/using-trim-in-plsql-query.html The Oracle/PLSQL TRIM function removes all specified characters eit...
-
https://randomsrsolutions.blogspot.com/2018/05/using-trunc-function-with-numbers-in.html The TRUNC function Truncates the Column, Expressi...
No comments:
Post a Comment