what is the difference between inline query and corelated
subquery
Answer / sudipta santra
Inline query :
select * from emp where empno=(select max(empno) from emp);
Co-Related sub query:
Select * from emp where dob> (select distinct dob where
deptno= 10);
Note: In the Inline subquery , The main query depends upon
the outcome value of the inline sub query which is in-lined
but in case of co-related sub query the main query and sub
query both run simultaneously then the check occurs.
Is This Answer Correct ? | 2 Yes | 10 No |
What do you mean by aggregate and scalar functions in dbms?
What is network database?
What is difference between database and server?
Mention the differences between union and union all
Can a DIALOG WINDOW have scroll bar attached to it ?
Define atomicity and aggregation.
What is the example of rdbms?
What is use of dbms?
what are the advantages of using them.
Enlist some commands of dml?
How do I create a database in access 2010?
What is the purpose of sql?