InterviewSolution
| 1. |
What Is The Difference Between Sql And Pl/sql? |
|
Answer» Structured Query Language (SQL) is a non-procedural language that interacts with the database, and is used for database MANIPULATION using the Data Definition Language (DDL) and Data Manipulation Language (DML) statements. CONTROL statements cannot be used in SQL, which is compiled and executed statement by statement at the runtime (late-binding). Structured Query Language (SQL) is a non-procedural language that interacts with the database, and is used for database manipulation using the Data Definition Language (DDL) and Data Manipulation Language (DML) statements. Control statements cannot be used in SQL, which is compiled and executed statement by statement at the runtime (late-binding). |
|