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.
Good one Bro.. U made it simple to understand
Keep Going
-Winkey
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.
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.
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.:-)
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.
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
Thanks Winkey
Thanks mate
hey thanks it was helpful. if u could add certain exapmles for al kind of joins,it would b great…!!
thanks and cheers…!!
Thanks for your response. You can find joins with example on one of my article "Sql Joins- Inner Joins, Self Joins, Outer Joins, Cross Joins"
http://vivekjohari.blogspot.com/2010/01/sql-joins-inner-joins-self-joins-outer.html
well done dude ..its easy to understand ……..
Thanks Ajeet for your response…:-)
Really a good article.
Thanks Puja for your valuable comments 🙂
well donee tute
superb sir.The explanation is very easy to understand.
Thanks:-)
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..
Hi
Thanks for your valuable comments.
Can you please gives more details of your problem as it will help me in explaining.
thank you sir for the wonderful and easy examples. It was very well explained. Thank you once again.
Thanks 🙂
nice explanation. Thanks
Thanks 🙂
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. 🙂
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.:-)
Thanks…….,the examples has gave me a clear idea..
Thanks Reddy for your valuable comments…..
nice explanation..
Thanks..:-)
nice
Thanks Sudharshan….:-)
could plz explain about indexed views
Thanks Vivek for making it so simple to understand
Thanks Siddharth for your valuable comments
nice and goood
kindly put datawarehousing questions and answers and put sql quiz and puzzles it will look more precious to see for SQL lovers
Hi Ashok,
Thanks for your invaluable comments. I will looking forward to add more sql tips puzzles and Example in near future.
Thanking you. am also expect more SQL test quiz from your side……..thankxxxxxxxxxx
now i understand wt actualy d difference izzz…………. thnkzzz
Its Perfect…:)
simply superb… gr8 article.
how do i improve my sql skills? any thoughts ? thanks.
Nice post very helpful
dbakings
It could have been more elaborate. This just a very basic type of explaination. Examples also are not upto the standard.
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
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
Very useful Vivek ji…. Helped me a lot…..
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.
Good One Vivek..
GOOD Atricle , Thanks for your effort.
Thanks for your Valuable comments
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.
an excellent example and I really cleared my doubts very clearly…Keep it Guru..
Easily understandable, very good article
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.
You made it very simple…
Thanks..
Hey , Can you please tell me what is difference between sub-query and inline view?
Nice explanations..
Thanks
Does this come under nested query??
SELECT Name
FROM AdventureWorks2008R2.Production.Product
WHERE ListPrice =
(SELECT ListPrice
FROM AdventureWorks2008R2.Production.Product
WHERE Name = 'Chainring Bolts' );
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…
watch strap trondheim special 24mm black leather orange stitching meyhofer width of buckle
next point toy story buzz y woody interactivos cod 64101tiendas ropa deportiva en chileventa de playeras de futbol barataszapatillas deportivas de mujer gucci deportivo lona compara 33 productos y compra ahora al mejor precio
barato nike air max 97 mujer online qiay068
comprar nike negras suela negra baratas espa帽a outlet onlinenike 845007 401 scarpe da ginnastica uomonike air jordan flight origin 2 mr white white i85i1617nike internationalist intersport
cykelhj盲lm racer lazer tonic gul cykelhj盲lmar racer cykelhj盲lmar
gildan mens heavy blend adult full zip hooded zipped hoodedmujer adidas azul bolsa de deporte adidas stellasport printed trainingcomprar botas futbol adidas nemeziz lo mejor del mercado 2019ideas para una fiesta infantil de f煤tbol con la que animar a l…
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
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…
10 best sneakers made in collaboration with hip hopers
amazing deal on broner fleece lined reversible knit cap warm wintercoolmax material quick dry sports beanie capadidas originals relaxed strapback hat mint at urban outfitterscorona extra blue embroidered hat
primadonna swim california blue legend bikini briefs boxer
prada pr 52mm womens square eyeglassesbalenciaga mens unisex metal round sunglassescalvin klein ck 414 gunmetal black polarized sunglassessun stop sunglasses
czarny elegancki kombinezon z wysokim ko艂nierzem czarne
buy gucci beige ebony gg canvas medium horsebit pelham shoulder bagvans kiyafet erkek ceketler online magazaclip and zip latex waist trainer cincher vest underbust corset bodyberta spring summer 2018 illusion neckline wedding dress with 3d flowers and…
nuevo vestido de fiesta de oto帽o para mujer elegante sexy club vestidos formales de boda de
nuova moda scarpe oxford emporio armani nero donna onlinedirndl kurz midi 2mobile phone map phone clipart map clipart green png image and clipartpower of peppa pig long sleeve shirt
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…
Watch TV Shows
Watch TV Shows