What is function?
Answers were Sorted based on User's Feedback
Answer / kiran kumar
---- is a named pl/sql block to perform a specific task, is
mainly used for calculation purpose.
---- A function is called as part of an exception.
---- Every function should return a value
Example for function
Create or replace
Function get_sal(p_id in emp.emp_no% type)
Return number
Is
v_sal emp.sal%type :=0;
Begin
Select salary into v_salary
From emp
Where emp_no = p_id;
Return v_salary
End get_sal;
End;
Output :
var g_sal number;
Exec :g_sal := get_sal(99);
Print g_salary;
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / dipa paul
To tell one sentence, function is -- which return a value
that value can be boolean,char, number and null.
We can use function in oracle form or report bulider and
stored in database.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is the error you will get if field is referenced in wrong repeating frame?
Sys Admin Module?
we are inserting,update and delete the data we can do simultaniously, but it will show error in updation? what to do?
What is MO operating units. Why it need to to set this and where .
WHAT IS THE USE OF SKIP WHERE U WILL GIVE?
Plz anybody send me Technical specification for AP Interface
differentiate between intra & inter UOM class conversion with examples.
How to call oracle database stored procedure from form in form coding ?
how can we return morethan one parameters in procedure?
In a table their 20 records.I had update 6 records???How can see and retrieve particular 6 records.i.e.,Latest updated.
10 Answers HCL, TCS,
If there is any issue then whom do you report.(this is imp question for every interview)
I Have report which is having field at the end of page,,, problem is when i run report data is overflowing to the next page,,i want the data to come on same page can anybody help me out????