Answer Posted / subbu
Aggreate functions are SUM,AVG,COUNT,MAX,MIN
| Is This Answer Correct ? | 20 Yes | 1 No |
Post New Answer View All Answers
What are the ansi data types supported in oracle?
How would you begin to troubleshoot an ORA-3113 error?
How to use null as conditions in oracle?
Why packages are used in oracle?
What is system tablespace?
What is sharded cluster?
How to drop an existing table in oracle?
List the various oracle database objects?
How to get execution path reports on query statements?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
Difference between the “verify” and “feedback” command?
What is literal?
What are the different types of database objects?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?