Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.67 KB

README.md

File metadata and controls

27 lines (21 loc) · 1.67 KB

PL/SQL Cursors

Cursor is nothing but a pointer to result of a SQL query.

Database schema used for SQL query: Customer Order Schema Cursor Blog1 Cursor Blog2

PL/SQL Records

Record is composite data structure i.e. composed of one or more fields.

PL/SQL Collections (Data Structures)

VARRAY

Similar to array in other programming languages.

Associative Array

Similar to hash tables in other programming languages like Dictionary in Python. PL/SQL Associative arrays are set of Key-Value pair.