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

write a query to display diference between two dates in sql server

2 Answers  


What is union?

0 Answers  


What is the difference between an inner join and an outer join?

0 Answers  


what are the different index configurations a table can have? : Sql dba

0 Answers  


how can create data base link for tow servers (scott schema) give examples plz

2 Answers  






What version is sql?

0 Answers  


How is sql used in oracle?

0 Answers  


What is an example of translating a date into julian format?

0 Answers  


Is id a reserved word in sql?

0 Answers  


I want to know the difference between A Record Type and a Table.

3 Answers   Thermotech,


How to place comments in pl/sql?

0 Answers  


Who developed sql?

0 Answers  


Categories