Oracle PL-SQL Question:
Download Job Interview Questions and Answers PDF
What are the components of a PL/SQL block?
Answer:
A set of related declarations and procedural statements is called block.
DECLARE -- declaration section BEGIN -- executable statements -- main section EXCEPTION -- handling possible exceptions -- occuring in the main section END;
DECLARE -- declaration section BEGIN -- executable statements -- main section EXCEPTION -- handling possible exceptions -- occuring in the main section END;
Download Oracle PL-SQL Interview Questions And Answers
PDF
Previous Question | Next Question |
What is the basic structure of PL/SQL? | What are the datatypes a available in PL/SQL? |