Web Analytics Made Easy - Statcounter

Difference between Subquery, Nested Subquery and Correlated Subquery

Query

Query can be defined as a way to inquire the data from the database. It is used to extract the data from one table or multiple tables depending upon the user needs.

Suppose we have a two tables Student and courses whose structure is given below:-

create table Student (Studentid int identity(1,1), Firstname nvarchar(200), Lastname nvarchar(200),Email nvarchar(100))

create table Course (Courseid int identity(1,1), Coursename nvarchar(250), CourseAdmin int)

Now suppose we insert the following data into these tables:-

For table Student

insert into Student values (‘Atul’,’Bajaj’, ‘atul@abc.com’ )

insert into Student values (‘Vivek’,’Johari’, ‘vivek@abc.com’ )

insert into Student values (‘Ankur’,’Johari’, ‘ankur@abc.com’ )

insert into Student values (‘Tarveen’, ‘Kaur’, ‘Tarveen@abc.com’)

For table Course

Insert into Course values(‘Oracle’,2)

Insert into Course values(‘Automation’,4)

Insert into Course values(‘Java’,2)

Insert into Course values(‘QTP’,4)

Now the query to see all the data from the table student and course is given below:-

Select * from student

Select * from Course

Subquery

If a sql statement contains another sql statement then the sql statement which is inside another sql statement is called Subquery. It is also known as nested query. The Sql Statement which contains the other sql statement is called Parent Statement.

For example, if we want to find the name of the course Admin of the course “Oracle”, then the following subquery will be used:-

select Firstname+’ ‘+Lastname from student where studentid in (select courseadminid from course where coursename =’Oracle’)

Result:-

In this example, the sql statement select courseadminid from course where coursename =’Oracle’” is a subquery.

Nested Subquery

If a Subquery contains another subquery, then the subquery inside another subquery is called nested subquery.

Let us suppose we have another table called “StudentCourse” which contains the information, which student is connected to which Course. The structure of the table is:-

create table StudentCourse( StudentCourseid int identity(1,1), Studentid int, Courseid int)

The Query to insert data into the table “Studentcourse” is

Insert into StudentCourse values(1,3)

Insert into StudentCourse values(2,1)

Insert into StudentCourse values(3,2)

Insert into StudentCourse values(4,4)

Note: – We don’t need to insert data for the column StudentCourseid since it is an identity column.

Now, if we want to get the list of all the student which belong to the course “Oracle”, then the query will be,

select Firstname, lastname from student where studentid in (select studentid from studentcourse where courseid in (select courseid from course where coursename=’Oracle’))

Result:-

In this example we use the nested subquery since the subquery “select courseid from course where coursename=’Oracle’” is itself contained in the another subquery(Parent Subquery) “select studentid from studentcourse where courseid in (select courseid from course where coursename=’Oracle’)”.

Correlated Subquery

If the outcome of a subquery is depends on the value of a column of its parent query table then the Sub query is called Correlated Subquery.

Suppose we want to get the details of the Courses (including the name of their course admin) from the Course table, we can use the following query:-

select Coursename ,Courseadminid,(select Firstname+’ ‘+Lastname  from student where studentid=Course.courseadminid)as CourseAdminName from course

Result:-

Here in this example the “select Firstname+’ ‘+Lastname  from student where studentid=Course.courseadminid” is called the correlated subquery since the outcome of this subquery is depends on the column courseadminid of the parent query. This means that the correlated subquery will be executed for each row selected by the parent query.

It is not necessary that the column on which the correlated query is depended is included in the selected columns list of the parent query. For example the   below query will also works even the column courseadminid on which the correlated query is depends , is not included in the selected columns list of the parent query.

select Coursename ,(select Firstname+’ ‘+Lastname  from student where studentid=Course.courseadminid)as CourseAdminName from course

Results:-


Discover more from Technology with Vivek Johari

Subscribe to get the latest posts sent to your email.

By vivekjohari

I am currently working as a Senior Database Professional and have around 18 years of experience in database. Degree:- Master Degree in Computer(MCA) Certification course in Data Science & Machine Learning from Indian Institute of Technology (IIT), Delhi Work experience:- Designing of the database. Database Optimization. Writing Complex Stored Procedures,Functions,Triggers etc. Designing and developing SSIS & DTS packages. Designing SQL Reports using SSRS. Database Server Maintenance. Certification:- MCTS: DA-100: Analysing Data with Microsoft Power BI MCTS: DP-300: Administering Relational Databases on Microsoft Azure Microsoft certified Sql DBA in Sql server 2008 (MCTS). Microsoft certified BI professional in Sql server 2008 (MCTS). Oracle certified profession DBA in ORACLE 10g (OCP) certified profession DBA in ORACLE 9i (OCP) My other publication Technical Blog:- Technologies with Vivek Johari Guest Author and Blogger at sqlservercentral.com

102 thought on “Difference between Subquery, Nested Subquery and Correlated Subquery”
    1. Author writes as…."eg of For example, if we want to find the name of the course Admin of the course “Oracle”, then the following subquery will be used:-

      select Firstname+' '+Lastname from student where studentid in (select courseadminid from course where coursename ='Oracle')
      "

      But i say in the above query he is retrieving the name of the student first name + last name and not the coureadmin name.

    2. 100's of ppl will browse and try to learn something new. So please before posting something on ur blogs pls correct it, veryify it.As already someone pointed out ur insert statement too. What if a newbie trying to learn something out of this blog. Please Ensure before posting anything.

    3. Hi Anonymous,
      First of all thanks for visiting my blog and spent time in writing the comments as comments motivate me to do more better. Second if you read my article carefully u got to know that, in my article, I store the course admin details also in the student table. So by the query which u mention as
      select Firstname+' '+Lastname from student where studentid in (select courseadminid from course where coursename ='Oracle')
      gives me the name of the COURSE ADMIN NOT ANY STUDENT. if you run that query and article carefully u will know that very well.

      So next time read blog carefully before writing such comments.
      Keep visiting my blog.:-)

    4. Hi Anonymous again,
      Yes, you are right hundreds of people visits my blogs daily and give me valuable comments which motivate me to improve my articles quality better. So before giving wrong comments, reading the articles carefully on not just on my blog but on any blog as UR WRONG COMMENTS WILL GOING TO CONFUSE THE OTHER READERS
      sO Please Ensure before posting ANY COMMENTS THAT YOU READ THE FULL ARTICLES .

      Keep visiting my blog and giving me your valuable comments.

    5. hi thanks for responding
      You still did not catch my point… your firstname + lastname gives you the name same as courseadminname but the value is from the studenttable not from the courseadmindetails.. since both are same u are thinking that it is courseadmin name… your courseadmin table is only in your condition and u r not retrieving anything from. please check once again. if possible remove the firstrow in the courseadmindetails and check

  1. hey thanks it was helpful. if u could add certain exapmles for al kind of joins,it would b great…!!

    thanks and cheers…!!

  2. Hi Sir,
    Could you explain me what is generally top n query in oracle.

    Select e1.emp_id from emp e1 where 2 = ( select count(distinct e2.emp_id) from emp_1 e2 where e1.emp_id = e2.emp_id);

    what does here 2 = stands for, i tried with few examples.When 1= given instead of 2 answer changes..could you please explain me..

    1. Hi
      Thanks for your valuable comments.
      Can you please gives more details of your problem as it will help me in explaining.

  3. thank you sir for the wonderful and easy examples. It was very well explained. Thank you once again.

  4. Hey Vivek…. Please correct you Insert query.. 🙁
    this your table structure.

    create table Student (Studentid int identity(1,1), Firstname nvarchar(200), Lastname nvarchar(200),Email nvarchar(100))

    And this your insert query..
    insert into Student values ('Atul','Bajaj', 'atul@abc.com' )

    IF you insert like that … Oracle through the error. bcoz you try to insert the varchar value in INT variable. That not right..

    your insert query should like that..
    INSERT INTO Student
    (Firstname, Lastname,Email)
    VALUES
    ('Atul','Bajaj', 'atul@abc.com');

    In that case Oracle insert the value in exact column. 🙂

    1. Hi Sumeet,
      Many thanks for your post. This article is written for SQL Server and in SQL Server, this code work fine.:-). However ur suggestion is good, from now on wards, I will try to mention the alternate command for Oracle too.:-)

    1. Hi Ashok,
      Thanks for your invaluable comments. I will looking forward to add more sql tips puzzles and Example in near future.

  5. It could have been more elaborate. This just a very basic type of explaination. Examples also are not upto the standard.

  6. After completing so many certifications if your explanation stuff is so weak like you have provided. I doubt your dedication to the technology & authentication of the certification candidate. Very poor it shows improper professional development with years of experience

    1. Thanks Anonymous for your comments as its motivate me to improve my article quality. But it is better if you give comments based on my articles not on my certificates as it like that you are more concern about my certificate than my article.
      Also some time it is hard to understand why people hide their identity while criticizing someone as sometimes it put a question mark on the person intention.

      Thanks again
      Vivek

  7. Hello Vivek, juz wondering if the below query can be alternate query for correlated query example.
    select A.Coursename , B.Firstname+' '+B.Lastname as CourseAdminName from A.course AND B.STUDENT where b.studentid=a.courseadminid

    Ajay.

  8. In one Of Interview I hve been asked , What is Co-related Query and how it works internally in oracle.
    Also it has been extended wht is diffrenece between co related query and temp table in SQL query.

  9. Hello Sir, you have explained the above aricle very well. Based on the above article I want to ask you that, I want to create a query in which I am comparing a field in two different tables and I want to get the record from the table which is having the higher value after that earlier comparision. I am not able to do this. Waiting for your response.

  10. Hey , Can you please tell me what is difference between sub-query and inline view?

  11. Does this come under nested query??
    SELECT Name
    FROM AdventureWorks2008R2.Production.Product
    WHERE ListPrice =
    (SELECT ListPrice
    FROM AdventureWorks2008R2.Production.Product
    WHERE Name = 'Chainring Bolts' );

  12. lightweight cotton bathrobes light weave pocketed spa cotton waffle bathrobe womens lightweight long bathrobes . lightweight cotton bathrobes

    womens lounge silk sleep shirt. silk sleepshirt navy white silk sleepshirt navy whitenike vintage nike packable windbreaker jacket black white size us m eu 48 50star wars chewbacca one piece pajamas little boys big boysmore views. fiona chiffon skater…

  13. pour la victoire havana block heels

    vans mens shoes atwood canvas burgundy windsor wine white skate sneakersreebok men hiking hillwalking shoes sale ridgerider trail 2.0 trail running shoesbuy puma turin womens shoes 63 off share discountnike retaliation tr sp

  14. susie tshirt style jersey jumpsuit. hover to zoom

    summer baby kids girl little big sister match clothes short sleeve floral jumpsuit romper outfits twedding guest plus size dress. style. tap to expandwholesale plus size lace up high low skirted coat xl black onlinedress outfit outfit idea party outfit…

  15. detalles de anillo viceroy 30 mujer plata cristal

    gr枚脽te auswahl an skagen herren schmuck g眉nstig online kaufen5 all damen frauen kapuzenjacke winter elegant zweireihig hoodie schlank trenchcoat anoraks lang mantel jacke wintermantelrichtig gute herren kniestr眉mpfe strumpf klausunterw盲sche in gr枚脽e 11…

Leave a Reply

Discover more from Technology with Vivek Johari

Subscribe now to keep reading and get access to the full archive.

Continue reading