Open Source Tutorials - Open Source Training
Open source training & tutorials from experienced, passionate people
chrome icon firefox icon ie icon opera icon safari icon Sings in these Browsers
A- A A+

By A Web Design

Welcome, Guest
Username Password: Remember me
All your queries regarding
MySQL Installation,
Learning MySQL DBA,
and tonnes more... will be solved in this forum
  • Page:
  • 1
TOPIC:

SubQuery

SubQuery 1 year, 10 months ago #20

  • manav
  • OFFLINE
  • Senior Boarder
  • Posts: 51
  • Karma: 0
hi sir,
What is Correlated and Non-Correlated SubQuery?
I want to know the difference between correlated and non-correlated subquery??

Re:SubQuery 1 year, 10 months ago #23

  • meher
Hi

A correlated subquery is an inner subquery which is referenced by the main outer query such that the inner query is considered as being executed repeatedly.

A noncorrelated subquery is subquery that is independent of the outer query and it can execute on its own without relying on main outer query.
Last Edit: 1 year, 10 months ago by .

Re:SubQuery 1 year, 10 months ago #32

  • manav
  • OFFLINE
  • Senior Boarder
  • Posts: 51
  • Karma: 0
It would be very helpful if you explain me Correlated and Non-Correlated SubQuery with an Example.

Re:SubQuery 1 year, 10 months ago #38

  • isaac
  • OFFLINE
  • Senior Boarder
  • Posts: 64
  • Karma: 0
It is as simple as this..

For example, consider there are two tables namely student and contact with s and c as alias name respectively in the database named School.

Correlated Subquery:
Select s.student_id, s.student_name
from school.student s
where s.student_id IN
(
select c.student_id
from school.contact c
where MONTH(c.admission) = MONTH(s.admission)
);

Noncorrelated Subquery:
Select s.student_id, s.student_name
from school.student s
where s.student_id IN
(
select c.student_id
from school.contact c
where c.email = ‘heena12(at the rate)abc(dot)com’
);
Last Edit: 11 months, 4 weeks ago by isaac.
  • Page:
  • 1
Time to create page: 2.54 seconds
OSV Newsletter


Receive HTML?

NOTE: To prevent subscription to the OSV newsletter, uncheck the checkbox above.
Guest Blog for OSV
Free Ebook Download