How to write an inner join with the where clause in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
What is a dynamic performance view in oracle?
Explain about integrity constraint?
What is a deadlock in SQL? How can you prevent it?
In which language oracle has been developed?
What is primefaces used for?
How to delete a user account in oracle?
what is meant by magic query
What are the numeric comparison operations?
What is a Public Synonyms ?
How to list all tables in your schema?
> 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 learn what codesets are available in oracle?