Give the structure of the function ?

Answers were Sorted based on User's Feedback



Give the structure of the function ?..

Answer / kiran

CREATE [OR REPLACE] FUNCTION function_name
[(parameter_name [IN | OUT | IN OUT] type [, ...])]
RETURN return_datatype
{IS | AS}
BEGIN
< function_body >
Return value()
END [function_name];

Is This Answer Correct ?    1 Yes 0 No

Give the structure of the function ?..

Answer / tulsi

FUNCTION name (argument list .....) Return datatype is
local variable declarations
Begin
executable statements
Exception
execution handlers
End;

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More SQL PLSQL Interview Questions

How does one load ebcdic data? : aql loader

0 Answers  


What are wait events. Describe the wait event tables.

1 Answers   CTS,


What is sql and explain its components?

0 Answers  


What is full join in sql?

0 Answers  


What is a natural join sql?

0 Answers  






How do I run pl sql in sql developer?

0 Answers  


What is foreign key in sql with example?

0 Answers  


What is the maximum number of columns in sql table?

0 Answers  


How to read xml file in oracle pl sql?

0 Answers  


What are the commands used in sql?

0 Answers  


Can we insert data into materialized view?

0 Answers  


What type of database is cloud sql?

0 Answers  


Categories