How to recover a dropped table in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
what are actual and formal parameters?
create one table to capture an employee details with a primary key.
What will be the syntax to find current date and time in format "yyyy-mm-dd"?
How to empty your oracle recycle bin?
Can the default values be assigned to actual parameters?
Explain about functional dependency and its relation with table design?
How to call a stored function in oracle?
How to convert csv to table in oracle?
Explain can a view based on another view?
Is it possible to split the print reviewer into more than one region ?
3. Display all the client numbers in the ORDER table. Remove duplicates.
> 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?