PLSQL 2 3 Practice
PLSQL 2 3 Practice
com
Try It / Solve It
1. In your own words, describe what a data type is and explain why it is important.
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
2
3. Identify three data types covered in the Database Programming with SQL course.
4. What data type can be used in PL/SQL, but can’t be used to define a table column?
5. Which data type indicates a large data object that is stored outside of the database?
6. Identify the data type category (LOB, Scalar, or Composite) for each data type. Each category may be used
more than once.
CLOB
VARCHAR2
BLOB
NUMBER
BFILE
TIMESTAMP
NCLOB
RECORD
PLS_INTEGER
LONG
TABLE
BOOLEAN
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective
owners.
3
7. Enter the data type category and the data type for each value. The first one has been done for you.
Text of a resume
100.20
A picture
1053
11-Jun-2016
Index Last_name
1 'Newman'
2 'Raman'
3 'Han'
A movie
A sound byte
FALSE
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective
owners.