Difference between sub query and nested query ?
Answer Posted / a.brahmam
subquery are also called as nested query
question is wrong
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are a collation and state the different types of collation sensitivity?
How to use "for" statements in oracle?
How to run create database statement?
> 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?
Typically, where is the conventional directory structure chosen for Oracle binaries to reside?
How to use "while" statements in oracle?
21. Using a set operator, display the client number of all clients who have ever placed an order and whose whose name does not contain the string Sm.
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
Why should I use oracle database?
Can a parameter be passed to a cursor?
How to count groups returned with the group by clause in oracle?
How to omit columns with default values in insert statement in oracle?
How to retrieve values from data fields in record variables?
How to get execution statistics reports on query statements?
What is a cursor and what are the steps need to be taken?