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 do you define a foreign key?
How can we make an if statement within a select statement?
What is pl sql architecture?
What is minus?
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
what are different types of collation sensitivity? : Sql dba
What is t sql used for?
What is a data manipulation language?
What is a unique key?
how to enter numeric values as hex numbers? : Sql dba
What is union?
What is meant by user defined function?
Is null operator in sql?
what does the t-sql command ident_current does? : Transact sql
Why procedure is used in sql?