際際滷

際際滷Share a Scribd company logo
PL/SQL DATA TYPES
BY
BAGAVATHI.M
The PL/SQL variables, constants and
parameters must have a valid data type, which
specifies a storage format, constraints, and a
valid range of values.
There are two main data types in
PL/SQL. They are:
1.Scalar.
2.LOB.
SCALAR Datatype:
Single values with no internal components, such as
a NUMBER, DATE, or BOOLEAN.
S.N
O
DESCRIPTION
1 Numeric
Numeric values on which arithmetic operations are performed.
2 Character
Alphanumeric values that represent single characters or strings of
characters.
3 Boolean
Logical values on which logical operations are performed.
4 Datetime
Dates and times.
NUMBERIC DATATYPE:
S.NO DESCRIPTION
1. BINARY_INTEGER
Signed integer in range -2,147,483,648 through 2,147,483,647, represented in 32 bits
2. BINARY_FLOAT
Single-precision IEEE 754-format floating-point number
3. BINARY_DOUBLE
Double-precision IEEE 754-format floating-point number
4. SMALLINT
ANSI and IBM specific integer type with maximum precision of 38 decimal digits
5. NUMBER(pre, scale)
Fixed-point or floating-point number with absolute value in range 1E-130 to (but not
including) 1.0E126. A NUMBER variable can also represent 0
EXAMPLE
Following is a valid declaration
DECLARE
num1 INTEGER;
num2 REAL;
num3 DOUBLE PRECISION;
BEGIN
null;
END;
When the above code is compiled and executed, it produces
the following result
PL/SQL procedure successfully completed
PL/SQL Character Data Types and Subtypes
Following is the detail of PL/SQL pre-defined character data types
and their sub-types 
S.N
O
DESCRIPTION
1. CHAR
Fixed-length character string with maximum size of 32,767 bytes
2. VARCHAR2
Variable-length character string with maximum size of 32,767 bytes
3. LONG
Variable-length character string with maximum size of 32,760 bytes
PL/SQL Boolean Data Types
The BOOLEAN data type stores
logical values that are used in logical
operations. The logical values are the
Boolean values TRUE and FALSE and the
value NULL.
PL/SQL Datetime and Interval Types
The DATE datatype is used to store fixed-
length datetimes, which include the time of day in
seconds since midnight. Valid dates range from
January 1, 4712 BC to December 31, 9999 AD.
The default might be 'DD-MON-YY',
which includes a two-digit number for the day of
the month, an abbreviation of the month name, and
the last two digits of the year.
LOB Datatypes
Large Object (LOB) data types refer to large
data items such as text, graphic images, video clips,
and sound waveforms.
LOB data types allow efficient, random,
piecewise access to this data. Following are the
predefined PL/SQL LOB data types
Data Type Description Size
BFILE
Used to store large binary
objects in operating
system files outside the
database.
System-
dependent.
Cannot exceed 4
gigabytes (GB).
BLOB
Used to store large binary
objects in the database.
8 to 128 terabytes
(TB)
CLOB
Used to store large blocks
of character data in the
database.
8 to 128 TB
NCLOB
Used to store large blocks
of NCHAR data in the
database.
8 to 128 TB
PL/SQL User-Defined Subtypes
 A subtype is a subset of another data type, which is
called its base type. A subtype has the same valid
operations as its base type, but only a subset of its
valid values.
 PL/SQL predefines several subtypes in
package STANDARD. For example, PL/SQL
predefines the
subtypes CHARACTER and INTEGER as follows :
EXAMPLE
DECLARE
SUBTYPE name IS char(20);
SUBTYPE message IS
varchar2(100);
salutation name; greetings message;
BEGIN
salutation := 'Reader ';
greetings := 'Welcome to the World
of PL/SQL';
dbms_output.put_line('Hello ' ||
salutation || greetings);
END;
Hello Reader Welcome to the World of
PL/SQL
PL/SQL procedure successfully
completed.

More Related Content

Similar to ADBMS DATATYPES (20)

Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
nsureshreddy51
Ch10
Ch10Ch10
Ch10
Kodok Ngorex
SQL-1.pptx for database system and system query language
SQL-1.pptx for database system  and system query languageSQL-1.pptx for database system  and system query language
SQL-1.pptx for database system and system query language
ironman82715
SQL.pptx structure query language in database management system
SQL.pptx structure query language in database management systemSQL.pptx structure query language in database management system
SQL.pptx structure query language in database management system
ironman82715
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbbChapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
hhhhhcccc25
Unit 4 plsql
Unit 4  plsqlUnit 4  plsql
Unit 4 plsql
DrkhanchanaR
Unit 4 rdbms study_material
Unit 4  rdbms study_materialUnit 4  rdbms study_material
Unit 4 rdbms study_material
gayaramesh
Cataloging and Metadata Management
Cataloging and Metadata ManagementCataloging and Metadata Management
Cataloging and Metadata Management
fhz6
Sql Basics And Advanced
Sql Basics And AdvancedSql Basics And Advanced
Sql Basics And Advanced
rainynovember12
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATIONUNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
saranyaksr92
Structured Query Language (SQL) _ Edu4Sure Training.pptx
Structured Query Language (SQL) _ Edu4Sure Training.pptxStructured Query Language (SQL) _ Edu4Sure Training.pptx
Structured Query Language (SQL) _ Edu4Sure Training.pptx
Edu4Sure
Database Management Lab -SQL Queries
Database Management Lab -SQL Queries Database Management Lab -SQL Queries
Database Management Lab -SQL Queries
shamim hossain
ADBMS Unit-II b
ADBMS Unit-II bADBMS Unit-II b
ADBMS Unit-II b
SSN College of Engineering, Kalavakkam
Revision booklet 6957 2016
Revision booklet 6957 2016Revision booklet 6957 2016
Revision booklet 6957 2016
jom1987
Unit4_DBMS.pptx
Unit4_DBMS.pptxUnit4_DBMS.pptx
Unit4_DBMS.pptx
ssuserabaa40
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
Sonia Pahuja
Dbms Basics
Dbms BasicsDbms Basics
Dbms Basics
DR. Ram Kumar Pathak
Unit 3 rdbms study_materials-converted
Unit 3  rdbms study_materials-convertedUnit 3  rdbms study_materials-converted
Unit 3 rdbms study_materials-converted
gayaramesh
12 SQL
12 SQL12 SQL
12 SQL
Praveen M Jigajinni
12 SQL
12 SQL12 SQL
12 SQL
Praveen M Jigajinni
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
nsureshreddy51
SQL-1.pptx for database system and system query language
SQL-1.pptx for database system  and system query languageSQL-1.pptx for database system  and system query language
SQL-1.pptx for database system and system query language
ironman82715
SQL.pptx structure query language in database management system
SQL.pptx structure query language in database management systemSQL.pptx structure query language in database management system
SQL.pptx structure query language in database management system
ironman82715
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbbChapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
Chapter 2.pdfbbbbbbbbbbbbbbbbbbbbbbbbbbb
hhhhhcccc25
Unit 4 rdbms study_material
Unit 4  rdbms study_materialUnit 4  rdbms study_material
Unit 4 rdbms study_material
gayaramesh
Cataloging and Metadata Management
Cataloging and Metadata ManagementCataloging and Metadata Management
Cataloging and Metadata Management
fhz6
Sql Basics And Advanced
Sql Basics And AdvancedSql Basics And Advanced
Sql Basics And Advanced
rainynovember12
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATIONUNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
UNIT 3 SQL 10.pdf ORACEL DATABASE QUERY OPTIMIZATION
saranyaksr92
Structured Query Language (SQL) _ Edu4Sure Training.pptx
Structured Query Language (SQL) _ Edu4Sure Training.pptxStructured Query Language (SQL) _ Edu4Sure Training.pptx
Structured Query Language (SQL) _ Edu4Sure Training.pptx
Edu4Sure
Database Management Lab -SQL Queries
Database Management Lab -SQL Queries Database Management Lab -SQL Queries
Database Management Lab -SQL Queries
shamim hossain
Revision booklet 6957 2016
Revision booklet 6957 2016Revision booklet 6957 2016
Revision booklet 6957 2016
jom1987
Unit4_DBMS.pptx
Unit4_DBMS.pptxUnit4_DBMS.pptx
Unit4_DBMS.pptx
ssuserabaa40
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
Sonia Pahuja
Unit 3 rdbms study_materials-converted
Unit 3  rdbms study_materials-convertedUnit 3  rdbms study_materials-converted
Unit 3 rdbms study_materials-converted
gayaramesh

Recently uploaded (20)

Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald QuansahKey Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Systematic Reviews Network (SRN)
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdfCut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
TechSoup
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMCWorld Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
jaspervedamvemavarap
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
CRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial PlansCRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial Plans
City and Regional Planning, METU
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
The Sentence and the Phrase presentation.pdf
The Sentence and the Phrase presentation.pdfThe Sentence and the Phrase presentation.pdf
The Sentence and the Phrase presentation.pdf
Netzi Valdelomar Miranda
Yale VMOC Special Report - Measles Outbreak Southwest US 3-26-2025 FINAL.pptx
Yale VMOC  Special Report - Measles Outbreak  Southwest US 3-26-2025  FINAL.pptxYale VMOC  Special Report - Measles Outbreak  Southwest US 3-26-2025  FINAL.pptx
Yale VMOC Special Report - Measles Outbreak Southwest US 3-26-2025 FINAL.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
VTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme pptVTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme ppt
Suvarna Hiremath
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
harisitjizoo
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptxS. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
sachin7989
URLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷sURLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷s
Celine George
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald QuansahKey Frameworks in Systematic Reviews - Dr Reginald Quansah
Key Frameworks in Systematic Reviews - Dr Reginald Quansah
Systematic Reviews Network (SRN)
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdfCut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
Cut Through the Noise_ Reaching Supporters When (and Where) It Matters Most.pdf
TechSoup
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMCWorld Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
World Cancer Day By Priscilla Jasper Vedam Vemavarapu @ASRHMC
jaspervedamvemavarap
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
CRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial PlansCRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial Plans
City and Regional Planning, METU
STOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptxSTOMACH Gross Anatomy & Clinical Anatomy.pptx
STOMACH Gross Anatomy & Clinical Anatomy.pptx
Sid Roy
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
Karin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaborationKarin Clavel - Collection Wall: Inspiring connection and collaboration
Karin Clavel - Collection Wall: Inspiring connection and collaboration
voginip
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
The Sentence and the Phrase presentation.pdf
The Sentence and the Phrase presentation.pdfThe Sentence and the Phrase presentation.pdf
The Sentence and the Phrase presentation.pdf
Netzi Valdelomar Miranda
VTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme pptVTU notes for Indian Knowledge System 2022 scheme ppt
VTU notes for Indian Knowledge System 2022 scheme ppt
Suvarna Hiremath
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
(eBook PDF) Urban Economics 9th Edition by Arthur O'Sullivan
harisitjizoo
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptxS. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptx
sachin7989
URLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷sURLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷s
Celine George

ADBMS DATATYPES

  • 2. The PL/SQL variables, constants and parameters must have a valid data type, which specifies a storage format, constraints, and a valid range of values. There are two main data types in PL/SQL. They are: 1.Scalar. 2.LOB.
  • 3. SCALAR Datatype: Single values with no internal components, such as a NUMBER, DATE, or BOOLEAN. S.N O DESCRIPTION 1 Numeric Numeric values on which arithmetic operations are performed. 2 Character Alphanumeric values that represent single characters or strings of characters. 3 Boolean Logical values on which logical operations are performed. 4 Datetime Dates and times.
  • 4. NUMBERIC DATATYPE: S.NO DESCRIPTION 1. BINARY_INTEGER Signed integer in range -2,147,483,648 through 2,147,483,647, represented in 32 bits 2. BINARY_FLOAT Single-precision IEEE 754-format floating-point number 3. BINARY_DOUBLE Double-precision IEEE 754-format floating-point number 4. SMALLINT ANSI and IBM specific integer type with maximum precision of 38 decimal digits 5. NUMBER(pre, scale) Fixed-point or floating-point number with absolute value in range 1E-130 to (but not including) 1.0E126. A NUMBER variable can also represent 0
  • 5. EXAMPLE Following is a valid declaration DECLARE num1 INTEGER; num2 REAL; num3 DOUBLE PRECISION; BEGIN null; END; When the above code is compiled and executed, it produces the following result PL/SQL procedure successfully completed
  • 6. PL/SQL Character Data Types and Subtypes Following is the detail of PL/SQL pre-defined character data types and their sub-types S.N O DESCRIPTION 1. CHAR Fixed-length character string with maximum size of 32,767 bytes 2. VARCHAR2 Variable-length character string with maximum size of 32,767 bytes 3. LONG Variable-length character string with maximum size of 32,760 bytes
  • 7. PL/SQL Boolean Data Types The BOOLEAN data type stores logical values that are used in logical operations. The logical values are the Boolean values TRUE and FALSE and the value NULL.
  • 8. PL/SQL Datetime and Interval Types The DATE datatype is used to store fixed- length datetimes, which include the time of day in seconds since midnight. Valid dates range from January 1, 4712 BC to December 31, 9999 AD. The default might be 'DD-MON-YY', which includes a two-digit number for the day of the month, an abbreviation of the month name, and the last two digits of the year.
  • 9. LOB Datatypes Large Object (LOB) data types refer to large data items such as text, graphic images, video clips, and sound waveforms. LOB data types allow efficient, random, piecewise access to this data. Following are the predefined PL/SQL LOB data types
  • 10. Data Type Description Size BFILE Used to store large binary objects in operating system files outside the database. System- dependent. Cannot exceed 4 gigabytes (GB). BLOB Used to store large binary objects in the database. 8 to 128 terabytes (TB) CLOB Used to store large blocks of character data in the database. 8 to 128 TB NCLOB Used to store large blocks of NCHAR data in the database. 8 to 128 TB
  • 11. PL/SQL User-Defined Subtypes A subtype is a subset of another data type, which is called its base type. A subtype has the same valid operations as its base type, but only a subset of its valid values. PL/SQL predefines several subtypes in package STANDARD. For example, PL/SQL predefines the subtypes CHARACTER and INTEGER as follows :
  • 12. EXAMPLE DECLARE SUBTYPE name IS char(20); SUBTYPE message IS varchar2(100); salutation name; greetings message; BEGIN salutation := 'Reader '; greetings := 'Welcome to the World of PL/SQL'; dbms_output.put_line('Hello ' || salutation || greetings); END; Hello Reader Welcome to the World of PL/SQL PL/SQL procedure successfully completed.