InterviewSolution
Saved Bookmarks
| 1. |
Can Ddl Statements Be Used In Pl/sql? |
|
Answer» No, you can not run any DDL STATEMENTS is PL/SQL DIRECTLY. If you try to use the DROP TABLE STATEMENT inside PL/SQL, you will get a compilation error as shown below: (Connect to XE with SQL*PLUS) BEGIN DROP TABLE student; -- compilation error END; /No, you can not run any DDL statements is PL/SQL directly. If you try to use the DROP TABLE statement inside PL/SQL, you will get a compilation error as shown below: |
|