COMPLEX/Tricky JOINS : SQL SERVER JOINS QUERIES INTERVIEW QUESTIONS AND ANSWERS EXAMPLES FOR EXPERIENCED SET-7


SET-7
COMPLEX JOINS: MS SQL SERVER JOINS QUERIES INTERVIEW QUESTIONS AND ANSWERS FOR EXPERIENCED WITH EXAMPLES(MORE THAN 3 YEARS)

This set contains the most complex SQL(MS) joins related queries interview questions for experienced developers. If you think you are expert in sql joins then go through this set and check that you are right or not.
Example image This set contains the most puzzled/complex interview queries so this set is for experienced developers, even DBA can also try this set to check their join concept, so if you have more than 5 years of exp. then this is for you. Try it, I promise that you would be really surprised by this set of joins queries because these queries are rarely seen by you, it is the latest set of complex SQL server queries.
Following are the related tables for joins:






COMPLEX SQL JOINS INTERVIEW QUERIES SET- 7
LETS START

--60. What would be the output of the following query(INNER JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 INNER JOIN TBL_2 T2 ON T1.ID = T2.ID
--ANS:

--61. What will the output of the following query(LEFT OUTER JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 LEFT OUTER JOIN TBL_2 T2 ON T1.ID = T2.ID
--ANS: Output will be same as 60th Question
     
--62. What will be the output of the following query(LEFT OUTER JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 LEFT OUTER JOIN TBL_2 T2 ON T1.ID = T2.ID
--ANS: Output will be same as 60th Question
 
--63. What will the output of the following query(RIGHT OUTER JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 RIGHT OUTER JOIN TBL_2 T2 ON T1.ID = T2.ID
--ANS: Output will be same as 60th Question

--64. What will be the output of the following query(FULL OUTER JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 FULL OUTER JOIN TBL_2 T2 ON T1.ID = T2.ID
--ANS: Output will be same as 60th Question

--65. What will be the output of the following query(CROSS JOIN)

SELECT T1.ID, T2.ID FROM TBL_1 T1 CROSS JOIN TBL_2 T2
--ANS: Output will be same as 60th Question


--66. What will be the output of the following query.(Related Tables : Table_1,Table_2)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID = B.ID
--ANS:
 
--67. What will be the output of the following query.(Related Tables : Table_1,Table_2)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID = B.ID AND A.[Name] = B.[Name]
--ANS:


--68. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH AND)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID = B.ID AND A.[Name] = B.[Name]
--ANS:


--69. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH OR)
SELECT A.[ID], A.[Name],B.[ID], B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID = B.ID OR A.[Name] = B.[Name]
--ANS:





--70. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH NOT EQUAL !=)
SELECT A.[ID], A.[Name],B.[ID], B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID != B.ID
--ANS:

--71. Click on the Page no 2 below for continue reading ( for 71st and more such Query)

--71. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH NOT)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON NOT(A.ID = B.ID)
--ANS:



--72. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH IN)
SELECT A.[ID], A.[Name],B.[ID], B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON A.ID IN(1)
--ANS:
 

--73. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(INNER JOIN WITH NOT)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A INNER JOIN [Table_2] B
ON NOT(A.ID = B.ID)
--ANS:



--74. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(LEFT OUTER JOIN)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A LEFT OUTER JOIN [Table_2] B
ON A.ID = B.ID
--ANS:
 

--75. Write down the query to fatch record from Table_1 which not exist in Table_2(based on ID column)
--ANS:
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A LEFT OUTER JOIN [Table_2] B
ON A.ID = B.ID WHERE B.[ID] IS NULL





--76. What will be the output of the following query.(Related Tables : Table_1,Table_2)
--(LEFT OUTER JOIN WITH !=)
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A LEFT OUTER JOIN [Table_2] B
ON A.ID != B.ID
--ANS:




--77. Write down the query to fatch record from Table_2 which not exist in Table_1(based on ID column)
--ANS:
SELECT A.[ID] ,A.[Name],B.[ID] ,B.[Name] FROM [Table_1] A RIGHT OUTER JOIN [Table_2] B
ON A.ID = B.ID WHERE A.[ID] IS NULL


If you like this post then please comment and give your feedback.
or if you have any complex join query then share it.
do you want more such queries then plz comment.

Click on the following link for NEXT SET OF QUESTIONS:

Comments

  1. if you want pdf then comment your email id

    Replies
    1. Please send me the PDF on : anu.art.pulse@gmail.com

    2. please send me pdf on: nagendrarc@gmail.com

    3. Please send me pdf on : atul.hadia@gmail.com

    4. please send me pdf on : anup.deo21@gmail.com

    5. Please send me pdf at gyan_shukla@ymail.com

    6. Please send me pdf at dingsihan@hotmail.com

    7. please send me pdf to ssk999@ymail.com

    8. saikiran.valandas@gmail.com

    9. sunil08.sk.sk@gmail.cmom

    10. harinagesh2012@gmail.com

    11. Please send me the PDF to manju.hosurur01@gmail.com

    12. Hi visas can you send me the sql server interviews questions and answers for interview preparation EMAIL ID:jeyaraj.soft02@gmail.com

    13. vinnivanitha97@gmail.com.......please send me pdf

    14. Thanks a lot!!!
      Pls send pdf to pratik5889@gmail.com

    15. ajithrdg@outlook.com

  2. Nice post... rk.foru111@gmail.com

  3. @rk.foru111@gmail.com
    Thanks for your comment
    I have send pdf (more than 100 queries) at your email id....
    @@@@@@@@@Enjoy learning...

    Replies
    1. Hi vikas,

      Can you plz send the queries to my maid id[Asif.ETLtesting@gmail.com].so that i would be very helpful to me.
      Thanks in advance

      Asif

  4. Hi Vikas, Superb Post and i was wonder to see the all SET Q & A especially Set 6& 7 Ques and Ans. Great Applauds for u. I am a beginner wanna learn more queries .. Can u please send the PDF or anything that has queries . Please. My id: chandrusql@gmail.com. Many thanks in advance.

  5. Nice post ......good for beginners......need more queries for practice.....gatrin@gmail.com

  6. Hi Vikas... Good job and Thanks dear

  7. Hey Vikas nice collect of interview questions and answer.
    Dear can you please send me a pdf on mohdanees2016@gmail.com

    Thanks for such a wonderful blog.

  8. Hi vikas

    very nice posting ..can you pls sen more !!!!!!!!!! SQL Query and things to my mail..my mail id selvaspec@gmail.com...

  9. Awesome Queries

    jerald4@gmail.com

  10. Nice....

  11. Good queries for beginners...

    gokulmcagopal@gmail.com...

    kindly post queries to this mail too






  12. i like this post, thanks please send pdf to this mail
    komarareddys@gmail.com

  13. Nice Post..Please send me pdf on mishra.nidhi1991@gmail.com

  14. hi vikas
    please send pdf to amounika45@gmail.com

  15. @@@@@@@@@@@@
    @@@@@@@@@@@@ All ABOVE
    PLEASE CHECK YOUR EMAIL....
    I HAVE SENT AN PDF COPY OF SQL SERVER INTERVIEW QUESTIONS INCLUDING ALL ABOVE QUESTIONS..
    PLEASE CHECK AND CONFIRM

  16. can you please send me these SQL SERVER INTERVIEW QUESTIONS at debayanbasu11@gmail.com...
    These will be very much useful to learn and clear my concept regarding SQL

  17. mail me also the pdf

  18. Hi, thank you, please email to me

  19. Nice post.
    Can you forward the related doucmnet to my mail id.

    riswan.15@gmail.com

    Thanks

  20. Nice post..I'm also a newbie and wanna lot more to practice..
    pls send also..
    kalujanaka@gmail.com

  21. very good post. very help full. could you please send some more query to my email id pinky.s.nayak@gmail.com

  22. very nice .........
    please send me some more queries at
    vasanibhadresh@gmail.com

  23. very nice...please send me more queries at kdeepakt@gmail.com

  24. very nice...please send me more queries at mshaik854@@gmail.com

  25. nice tutorial
    please mail me pdf
    anilchowdhury12@gmail.com

  26. nICE gUIDE Vikas.....................Send me @ absarkar64@gmail.com

  27. send me pdf on my email id peeyushkr2222@gmail.com

  28. send me pdf on my email id ---> vikas.khichar@gmail.com

  29. Hi Vikas ..Awesome work.. could you pls mail the pdf to my id too - shyamala.srini7@gmail.com

  30. Hi Vikas,
    This is very nice tutorials
    Please send me pdf on this email id
    anil.gaikwad49@gmail.com

  31. Please sent me pdf, lamanh.blog@gmail.com

  32. Please mail me pdf..
    stringrajesh@gmail.com

  33. @@@@@@@@@@@@
    @@@@@@@@@@@@ All ABOVE
    PLEASE CHECK YOUR EMAIL....
    I HAVE SENT AN PDF COPY OF SQL SERVER INTERVIEW QUESTIONS INCLUDING ALL ABOVE QUESTIONS..
    PLEASE CHECK AND CONFIRM

  34. Hi Vikas,

    Kindly send to me mjmlakhtar@gmail.com

  35. Please send me pdf at poonam.gcsood@gmail.com. Thanks

  36. Hi Vikas,
    nice job done.
    please send me a copy of these at vishu.mah@gmail.com

  37. please send pdf
    dayananandthombare@gmail.com

  38. chinnu.gajjala@gmail.com

  39. Hi Vikas, Keep up the good work. Kindly share the pdf to my ID abdfreak@gmail.com

  40. poljakd@gmail.com Thank you!!

  41. Please share me the Advance Sql Objective type interview Questions and answers on my personal id pradeepshine1@gmail.com

  42. Please mail PDF to priya26589@gmail.com

  43. very helpful. please share PDF kittu327@gmail.com

  44. Really good, can you pls share the advanced sql queries PDF to ramesh.ganga@gmail.com

  45. Good kindly send it to me as well. Riswan.15@gmail.com

  46. Hi..Nice Queries..Can u please send me all SQL Queries that you have to my mail id girishbgm@gmail.com

  47. Please send the pdf to rsrikrishna@gmail.com

  48. Nice Job there... Can you please send the PDF to my gmail account theravs@gmail.com

  49. Please mail PDF to ajithanu.anu@gmail.com

  50. hi....
    please send me the pdf...
    prasenjit.primalink@gmail.com

  51. Nice Work...
    I enjoyed and learn new thing.
    Thanks.

  52. hey can anyone mail me the pdf format sql server interview questions.
    manjunathvrp@gmail.com

  53. Very nice. Please email pdf to jarnbrain@gmail.com.

  54. ruchipilaniya1@gmail.com

  55. prasannapatireddy@gmail.com

  56. Pls send me PDF @skb.sami@gmail.com

  57. pls send me a copy at charan1131@gmail.com

  58. dgnr@live.com

  59. please send me pdf comesboy@gmail.com

  60. Please send me pdf vikram.sappi@gmail.com

  61. Hi,Vikas.
    It is very good Post and much useful to beginners.
    Please send me pdf to mamathareddy96@gmail.com.
    thank you


  62. Hi,
    Please send me the pdf copy to my mail--amarnadh886@gmail.com

  63. hi please send a copy on d.kaushal87@gmail.com

  64. Hi,
    Please send me the pdf copy to my mail--shalabh.ideal@gmail.com

    Reply

  65. Hi Vikas, please send me the PDF.Thank you in advance to help me.

    Email address is tanupal17@gmail.com

  66. Hi Vikas,

    Excellent stuff. Please share the PDF to sakthiforever@gmail.com. TIA.

  67. akanksha.saxena16@gmail.com

  68. @ALL Above
    PDF has been sent to all, Please check and confirm
    Thanks
    Vikas Ahlawat

  69. please send pdf to amriteshkumar143@gmail.com

  70. Please share to msrikanthece01@gmail.com

    Regards,
    Srikanth

  71. Please send the PDF to ajeshkumar.parna @gmail.com

  72. Please send the PDF to samtulse@gmail.com

  73. Hi Vikas,

    Thank you so much for the post and it's really informative. Can you please send me the PDF to santhosh.naga2244@gmail.com.

    Thanks,
    Santhosh

  74. Hi Vikas,

    Thank you so much for the post and it's really informative. Can you please send me the PDF to santhosh.naga2244@gmail.com.

    Thanks,
    Santhosh

  75. Hi Vikas,

    Can you please send me the PDF to abhimca23@gmail.com. Thanks a lot

    Thanks,
    Abhishek

  76. Please send SQL pdf to seema.me17@gmail.com

  77. Its very usefull to me thank you

    please send the pdf format to this mail id
    *********** CHINNUMUTHU@GMAIL.COM**************

  78. Hi Vikas,
    Can you please send the PDF to sreerao_07@yahoo.com

    Thanks,
    Sree

  79. Hello Sir
    Please send me SQL queries PDF to harshal0802@gmail.com
    Thank u

  80. Hi Vikas,

    Thank you so much for the post and it's really informative. Can you please send me the PDF to ashishdixit62@gmail.com.

    Thanks,
    Ashish Dixit

  81. Please send me PDF
    chethan.msbi@gmail.com

  82. Please send the pdf to rajat.sivan@gmail.com

  83. Hi Vikas,

    Request you to send the pdf to me as well. prashanth.nt@gmail.com

    Many thanks in advance.

  84. Hi Vikas,

    Request you to send the pdf to me as well. prashanth.nt@gmail.com

    Many thanks in advance.

  85. Hi,
    Please send the pdf to nis522@yahoo.com

  86. Hi Appreciate your effort. Could you please share the PDF with me (Smartlink.ece@gmail.com) and also please direct me to other SQL related articles. Thanks.

  87. These questions are just some basis of SQL join statement. The real-world SQL interview questions are very likely to be much more difficult, especially for those data/business analytics positions.

  88. Hi,
    Please send the pdf to danish.sharma@thepsi.com

  89. Hi

    Good work bro.............. well done. Do send me d pdf.

    Thanks in advance,

  90. Please send pdf to anan0401@yahoo.com

  91. Hi,
    Please send the pdf to rapatil1989@gmail.com..

  92. hi,
    plese send the pdf to marasel341@gmail.com
    reply

  93. Hi,

    Please send to me the pdf to ajoseph1021@gmail.com

  94. Hi,

    Please send to me the pdf to kiranbirajdar.2011@rediffmail.com

  95. Hi,
    Please send the pdf to kpscheckmail@gmail.com

  96. Hi,
    Please send the PDF to sreerao_07@yahoo.com. It is very informative. Appreciate your help.

  97. Hi,
    Please send the pdf to vijaykumar2659@gmail.com

  98. Please send me at abhishekdrkrai@gmail.com

  99. Please send me the pdf pravinbhagat.100@gmail.com

  100. Gr8 post..i wish i have read this before , i would have cleared more interviews..Pls send me PDF at harshgupta8921@gmail.com

  101. pgaurg@gmail.com....thanks

  102. Hi Every1... I have my interview in Amazon. Can someone send me the PDF.. ranjansaurabh90@yahoo.com.. Its urgent

  103. Hi,
    Very Useful material.
    Please send me the pdf at charusingh5100@gmail.com.
    Thanks

  104. Hi,
    Can you send the pdf at swathirao222@gmail.com

  105. please send it manjusri1715@gmail.com

  106. nice post Please send me the pdf on anitakane@gmail.com

  107. I am very happy to you Please send me the pdf on msmahendiran@gmail.com

  108. Nice post. It is very helpfull. Kindly send me the pdf on padhan.sudhanshu@gmail.com. Thanks in Advance.

  109. Please send me the pdf on piku007.707@gmail.com

  110. please send me pdf to rajeshe77@gmail.com

  111. please send me pdf on er.sami1811@gmail.com

  112. Hi...
    its very usefull to me...
    please send me the pdf to rekar.nitt@gmail.com

  113. Please send me the pdf to alagesh2@gmail.com

  114. good examples

  115. dear Sir,

    plz send on gyanjaiswal@gmail.com pdf files

  116. Please send PDF to sreesql56@gmail.com
    Thanks in advance

  117. Please send PDF and interview questions
    to ranjan.behera7@gmail.com

    Thanks in advance

  118. its very usefull...
    please send me the pdf to sachinddhake@gmail.com

  119. vikas.r.shukla@gmail.com..Plz send me a pdf for SQL. waiting..Thanks

  120. Plz send me also pdf for SQL .. thank you very much in advance

  121. Excellent questionnaire

  122. Hy Vikas,
    Very Good job,complete tutorial is useful..will u plz send me more sql queries to shiwanipatidar113011@gmail.com

  123. please send me pdf @ gyan_shukla@ymail.com

  124. plsssssssss send me pdf at nitin.shelke07@gmail.com

  125. Nice post.. Great work and big Applauds to you..
    Need more complex queries for practice.....kindly post to monicakshine@gmail.com,
    Thanks for your help in advance...

  126. Its very useful and easy to understand ..please share the PDF to my mail id: lavanyarajasekaran89@gmial.com

  127. Very nice collection, Kindly share pdf for sql,asp.net,mvc,oop interview question..
    my id.... onlinecourse321@gmail.com

  128. Hi...
    its very usefull to me...
    please send me the pdf to g.maheshbabu6@gmail.com

  129. very nice...please send me more sql and .net interview question and answer pdf to my mail bhimapolicepatil@gmail.com

  130. Good post vikas,

    Can you please send to sppachu@gmail.com

    Thanks in advance.

  131. Please send PDF
    Umeshkumarpal786@gmail

  132. hi, please send pdf to swapnilbagadia@live.com

  133. Pls send me more pdf
    Satyathorat007@gmail.com

  134. Hi Vikas,
    Can you please send the pdf @ :- mohitp.1986@gmail.com.
    Thanks in advance and really awesome work.

  135. Hiii,
    p[lease send me Pdf file to Gurrampavankumar42@gmail.com

  136. I want this pdf....it is really helpful......
    gaikwadanjali521@gmail.com

  137. Nice work.. Thanks for sharing.. Could you please drop the pdf at aashish317@gmail.com

  138. This comment has been removed by the author.

  139. i want query pdf
    plz mail me on dattas72 at gmail.com

  140. Hi Vikas,
    Can you please send the pdf @ :- shlomi.gigi@gmail.com.
    Thanks in advance.

  141. Kindly Mail me on
    khulbey.sumit@gmail.com
    Thnak you

  142. kumari.ratna069@gmail.com

  143. hi vikas

    Please mail me pdf..

    sowbaranicse@gmail.com..

    Thanks in advance.

  144. Please do send me the pdf on harwani.neha@gmail.com

  145. Such a great site to learn tricky and complex queries with examples. thank you so much developer.
    could you please send me complete pdf to kumaarss001@gmail.com
    many thanks in advance...

  146. nice piece, pls share more on nickjose260@gmail.com

  147. Please do send me the pdf on amit1992rout@gmail.com
    Thanks in advance.

  148. Nice post,Thanks.
    Please do send me the pdf on shashik1604t@gmail.com
    Thanks in advance.

  149. IN SQL interview questions SET 7 QUESTION NUMBER 69 OUTPUT IS WRONG PLEASE CORRECT IT

    Replies
    1. How it is wrong, can you explain, the condition is OR, not end, I think you taken it as AND condition... If I am wrong, plz correct me.. by share your output

  150. Please send me pdf of sql,oops asp.net interview q's @ Maheshguttedar16@gmail.com

  151. very helpful. Thanks a lot for sharing .. It just starts from the beginning and checks your knowledge inside out.. i loved it.

    Please share the PDF with me for the complete dataset on ipsg007@gmail.com.

  152. very helpful

  153. Hi..Please share pdf to oharinichandra@gmail.com. Thanks in Advance

  154. Please share pdf to oharinichandra@gmail.com

  155. Anyone please send me the pdf bwalya92@gmail.com

  156. Hi Vikas
    please send me the PDF on my email_ID himanshu.goyal01@gmail.com

  157. Great Post, please send me the pdf at email id rahulandu@gmail.com

  158. Hi Vikas,

    Kindly send the PDF. It will help me alot.

  159. hi vikas
    please send me pdf to vishal046@gmail.com

  160. hi vikas
    Can you send me the sql server interviews questions and answers for interview preparation EMAIL ID:jeyaraj.soft02@gmail.com

  161. Hi Vikas, Superb Post and i was happy to see the all SET Q & A especially Set 6& 7 Ques and Ans. Great Applauds for ur work & upload. I am a beginner wanna learn more queries ... Can u please send the PDF or anything that has queries . Please. My id: jsreddy2286@outlook.com
    jeripothulajsreddy@gmail.com

  162. Hi Vikas,

    Kindly send the PDF. It will help me alot. My id: udhaya.mail@gmail.com

  163. Would really appreciate some trick questions on SEMI-JOIN and ANTI-JOIN.

  164. hi Please send me as pdf to susanta.eetec@gmail.com

  165. Hi
    kindly send me queries as pdf to this mail pallintigeethanjali@gmail.com
    thank u

  166. Hi
    please send me all queries as a pdf to my mail pallintigeethanjali@gmail.com
    thank u

  167. Please send me all queries to priyac274@gmail.com

  168. can u pls send me a pdf of this queries to abidseraj20@gmail.com
    Warm regards,
    Abid

  169. can u please send me pdf to sanjayyadav0802@gmail.com

  170. Hi,

    Very nice examples for joins. Please send me PDF on vivekashish29@gmail.com

    Thanks & regards,
    Vivek

  171. Hi ,

    Nice examples on joins. Please send me PDF on vivekashish29@gmail.com

    Thanks & regards,
    Vivek

  172. Hi Vikas,

    Cool. Please send me PDF. email id: abhikauppesce@gmail.com

    Regards,
    Abhishek

  173. Very nice collection. Please send me the pdf at pathak_dei02@yahoo.co.in

  174. Please sent me PDF file--- bijendra.singh89@gmail.com

  175. Dear Sir, Pls send the pdf file to my id km.vicas@gmail.com
    Thanks in advance.

  176. Please send query to this mail-id charan2apps@gmail.com

  177. Great work..

  178. Great query....please send me the PDF on my id: bit.sky2008@gmail.com

  179. Very helpful
    please share complete PDF set to yallappa.d7@gmail.com

  180. Very Nice Post. Please send me PDF on reenajasuja2000@gmail.com

  181. Nice post. Thanks for sharing!

  182. can you please share more question and answers having more than 3+ years experience to below mail.

    msbipavan215@gmail.com

  183. hey vikas,please send pdf on chinki.sharma73@gmail.com

Emotions
Copy and paste emojis inside comment box

Contact Form

Send