What is the basic structure of PL/SQL ?

Answers were Sorted based on User's Feedback



What is the basic structure of PL/SQL ?..

Answer / rajesh

Declare
begin
exception
end;

Is This Answer Correct ?    14 Yes 1 No

What is the basic structure of PL/SQL ?..

Answer / vasan

Declare (Optional)
begin (Mandatory)
exception(Optional)
end; (Mandatory)

Is This Answer Correct ?    8 Yes 0 No

What is the basic structure of PL/SQL ?..

Answer / dinesh mishra

Header (named module only)
Declaration (IS)
Execution (BEGIN)
Exception
END;

Is This Answer Correct ?    6 Yes 0 No

What is the basic structure of PL/SQL ?..

Answer / menan

declaration part;
begin
executable part;
exception handling;
end;

Is This Answer Correct ?    5 Yes 0 No

What is the basic structure of PL/SQL ?..

Answer / 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

What is the basic structure of PL/SQL ?..

Answer / kannan

# 4

Declare (Optional)
begin (Mandatory)
exception(Optional)
end; (Mandatory)

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More SQL PLSQL Interview Questions

Give which cursor is better for better performance means type of cursors?

2 Answers  


What does the acronym acid stand for in database management?

0 Answers  


What is not equal in sql?

0 Answers  


Which is faster joins or subqueries?

0 Answers  


How can multiply values of a column? OR How can multiply value of a row of a column using a single query in SQL?

1 Answers   Pitney Bowes,






What is data control language (dcl)?

0 Answers  


Is there any restriction on the use of union in embedded sql?

0 Answers  


Can you have a foreign key without a primary key?

0 Answers  


what is the difference between granting and creating a view?

2 Answers  


what is the difference between join and union? : Sql dba

0 Answers  


How many types of triggers exist in pl/sql?

0 Answers  


Which sql statement is used to return only different values?

0 Answers  


Categories