What is a subquery in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
How to connect the oracle server as sysdba?
What is index-organized table in Oracle?
What are the types of synonyms?
> 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?
Can sub procedure/function be called recursively?
What is an oracle table?
Can we create more than one constraint to column ?
How to create a new user account in oracle?
How to estimate disk space needed for an export job?
You have one employee table having 3 entries emp_id, Mgr_id and salary. Mgr_id is also referencing emp_id. so now find out the emp_id which are having the second highest salary, under a particular manager.
how to use sequence and what use of sequence cache