PL / SQL Pl/SQL state Loops in PL/SQL Built in Function Cursor Management Exception INTRODUCTION PL/SQL stands for Procedural Language/SQL. PL/SQL extends SQL by adding constructs found in procedural languages, resulting in a structural language that is more powerful than SQL.PL/SQL is not case sensitive. ‘C’ style comments (/* ……… */) may be used in PL/SQL programs whenever required. All PL/SQL programs are made up of blocks, each block performs a logical action in the program. A PL/SQL block consists of three parts 1. Declaration section 2. Executable section 3. Exception handling section Only the executable section is required. The other sections are optional. A PL/SQL block h...