PLSQL 2 3
PLSQL 2 3
PL/SQL
2-3
Recognizing Data Types
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 3
Recognizing Data Types
Purpose
• As a result of the Database Programming with SQL course,
you should be familiar with several data types that were
used when defining the type of data stored in the different
columns of a table (NUMBER, VARCHAR2, DATE, etc.).
• PL/SQL includes a variety of data types for use when
defining variables, constants, and parameters.
• As with table columns, these data types specify what type
and size of data can be stored in a particular location.
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 4
Recognizing Data Types
PL/SQL Data Types
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 5
Recognizing Data Types
Scalar Data Types
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 6
Recognizing Data Types
Scalar Data Types: Character (or String)
(ex. v_first_name )
VARCHAR2(20) := 'Neena';
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 7
Recognizing Data Types
Scalar Data Types: Number
(ex. v_salary )
NUMBER(8,2) := 9999.99;
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 8
Recognizing Data Types
Scalar Data Types: Date
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 9
Recognizing Data Types
Scalar Data Types: Boolean
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 10
Recognizing Data Types
Composite Data Types
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 11
Recognizing Data Types
Record Composite Data Type
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 12
Recognizing Data Types
LOB (Large Object) Data Type
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 13
Recognizing Data Types
LOB Data Type
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 14
Recognizing Data Types
LOB Data Type
Book
(CLOB)
TABLE Photo
(BLOB)
Movie
(BFILE)
NCLOB
DATABASE
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 15
Recognizing Data Types
Terminology
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 16
Recognizing Data Types
Terminology
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 17
Recognizing Data Types
Summary
PLSQL S2L3 Copyright © 2016, Oracle and/or its affiliates. All rights reserved. 18
Recognizing Data Types