Answer Posted / shekharjchandra
The basic structure of PL/SQL is
1. Header Section
2. Declaration Section
3. Executable Section
4. Exception Section
Eg:-
<<This_is_Header>>
DECLARE
a NUMBER ;
BEGIN
-- Code goes here
NULL;
EXCEPTION
WHEN OTHERS THEN
NULL ;
END ;
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How run sql*plus commands that are stored in a local file?
Are null values same as that of zero or a blank space?
Which is faster truncate or drop?
How to Declare Fixed Length String Value In PL SQL
Where is sql database stored?
What are the operators in sql?
What is compound trigger?
What are sql injection vulnerabilities?
what are the authentication modes in sql server? : Sql dba
Explain the difference between cursor declared in procedures and cursors declared in the package specification?
Can we rollback after truncate?
Can we edit a view in sql?
What is latest version of sql?
Which are sql * plus commands?
How can we find duplicate records in a table?