1 |
Relationship between SQL and PL/SQL
-
PL/SQL is an application development language.
-
while SQL is the basic data access language in Oracle that all other Oracle products and tools use, including PL/SQL engine
-
PL/SQL is a superset of SQL, allowing all the DML statements, cursor operations and the transaction processing statements in SQL
-
SQL is a non-procedural language, only allowing to specify what to do, not how to do.
-
while PL/SQL is the procedual extension of SQL, allowing one to specify both
|