Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
INITCAP « Char Functions « Oracle PL / SQL
Oracle PL / SQL
Char Functions
INITCAP
1.
Initcap: changes the first (initial) letter of a word (string) or series of words into uppercase
2.
INITCAP() returns the character string passed into it with the first letter of each word capitalized
3.
Simple demo for INITAP: sets the first character in each word to uppercase and the rest to lowercase
4.
INITCAP: capital the first letter in a word
5.
select initcap('THESE WORDS will be INITcapped')
6.
select initcap( table_name ) from user_tables
7.
INITCAP a sentence