Difference between subquery and correlated subquery in Teradata SQL?

Subquery :- The inner query is executed only once The inner query will get executed first and the output of the inner query used by the outer query.The inner query is not dependent on outer query.

Eg:- SELECT cust_name, dept_no FROM Customer WHERE cust_name IN (SELECT cust_name FROM Customer);

Correlated subquery:-The outer query will get executed first and for every row of outer query, inner query will get executed. So the inner query will get executed as many times as no.of rows in result of the outer query.The outer query output can use the inner query output for comparison. This means inner query and outer query dependent on each other

Eg:- SELECT cust_name,dept_id FROM Cust
WHERE cust_name in (SELECT cust_name FROM dept WHERE cust.dept_id=dept.dept_id);


9 comments:

  1. which is better performance wise ?

    ReplyDelete
  2. u had done a very good job

    ReplyDelete
  3. Hi, here in the "Example of Correlated Subquery in SQL" , you have not used exists or not exists keyword. is it a correlated query?
    To get more info please visit http://help-essay.com.

    ReplyDelete
    Replies
    1. Austin I guess you are not illiterate???

      Delete
    2. Please hold your tongue or ill rip it off

      Delete
  4. Life is still good ...

    ReplyDelete