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

What are the two parts of a procedure ?

6 Answers   Hi Caliber IT,


Explain the difference between 'between' & 'and' operators in sql

0 Answers  


how can we find the number of rows in a table using mysql? : Sql dba

0 Answers  


What is a system versioned table?

0 Answers  


What is equi join in sql?

0 Answers  






I need a function for a train ticket reservation please answer it thanks in advance

0 Answers  


What is a unique key?

0 Answers  


What is the Query to print out the individual total number of duplicate row in sql.

5 Answers   TCS,


What are the types of records?

0 Answers  


what are the nonstandard string types? : Sql dba

0 Answers  


What is t-sql? : Transact sql

0 Answers  


Types of cursors and explanation each of them ?

4 Answers   DELL,


Categories