Oracle SQL,PL/SQL

Single Row Functions

Select Lower (‘sql course’);
Avatar of shohal
Written by shohal

Case-manipulation functions

Lower, Upper and Initcap are the three Case-manipulation/ Case-Conversion Function

Lower:

Converts mixed or uppercase character to lowercase.

Example:

Select Lower (‘SQL Course’);

Output:

sql course

Upper:

Converts mixed or lowercase character to uppercase.

Example:

Select Lower (‘sql course’);

Output:

SQL COURSE

Initcap:

Coverts first letter to of each word to uppercase and remaining letters to lowercase.

Example:

Select Initcap (‘sql course’);

Output:

Sql Course

About the author

Avatar of shohal

shohal

I have profession and personal attachment with custom ERP Software development, Business Analysis, Project Management and Implementation almost (36) ,also Oracle Apex is my all-time favorite platform to developed the software. Moreover i have some website development experience with WordPress. For hand on networking experience DevOps and CCNA, it create me a full package. Here are some core programming language with networking course i have been worked: Oracle SQL ,PL/SQL,Oracle 19c Database , Oracle Apex 20.1,WordPress,Asp.Net ,MS SQL ,CCNA ,Dev Ops, SAP SD

Leave a Comment