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
What is the clause we need to add in function body to return variable?
What are types of exception?
what is a table in a database ? : Sql dba
What is pl sql block structure?
how to add a new column to an existing table in mysql? : Sql dba
what is oracle database ? : Sql dba
what is a tablespace? : Sql dba
Is sql developer case sensitive?
What is difference between joins and union?
Is primary key an index?
What is primary key sql?
What are local and global Indexes and where they are useful.
What is a call statement? Explain with an example.
What are the sql commands?
how would concatenate strings in mysql? : Sql dba