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

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

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

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

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

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

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

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

      Delete
    8. saikiran.valandas@gmail.com

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

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

      Delete
    11. vinnivanitha97@gmail.com.......please send me pdf

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

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

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

    ReplyDelete
    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

      Delete
  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.

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

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

    ReplyDelete
  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.

    ReplyDelete
  8. Hi vikas

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

    ReplyDelete
  9. Awesome Queries

    jerald4@gmail.com

    ReplyDelete
  10. Good queries for beginners...

    gokulmcagopal@gmail.com...

    kindly post queries to this mail too






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

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

    ReplyDelete
  13. hi vikas
    please send pdf to amounika45@gmail.com

    ReplyDelete
  14. @@@@@@@@@@@@
    @@@@@@@@@@@@ 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

    ReplyDelete
  15. 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

    ReplyDelete
  16. Hi, thank you, please email to me

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

    riswan.15@gmail.com

    Thanks

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

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

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

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

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

    ReplyDelete
  23. nice tutorial
    please mail me pdf
    anilchowdhury12@gmail.com

    ReplyDelete
  24. nICE gUIDE Vikas.....................Send me @ absarkar64@gmail.com

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

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

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

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

    ReplyDelete
  29. Please sent me pdf, lamanh.blog@gmail.com

    ReplyDelete
  30. Please mail me pdf..
    stringrajesh@gmail.com

    ReplyDelete
  31. @@@@@@@@@@@@
    @@@@@@@@@@@@ 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

    ReplyDelete
  32. Hi Vikas,

    Kindly send to me mjmlakhtar@gmail.com

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

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

    ReplyDelete
  35. please send pdf
    dayananandthombare@gmail.com

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

    ReplyDelete
  37. poljakd@gmail.com Thank you!!

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

    ReplyDelete
  39. Please mail PDF to priya26589@gmail.com

    ReplyDelete
  40. very helpful. please share PDF kittu327@gmail.com

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

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

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

    ReplyDelete
  44. Please send the pdf to rsrikrishna@gmail.com

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

    ReplyDelete
  46. Please mail PDF to ajithanu.anu@gmail.com

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

    ReplyDelete
  48. Nice Work...
    I enjoyed and learn new thing.
    Thanks.

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

    ReplyDelete
  50. Very nice. Please email pdf to jarnbrain@gmail.com.

    ReplyDelete
  51. ruchipilaniya1@gmail.com

    ReplyDelete
  52. prasannapatireddy@gmail.com

    ReplyDelete
  53. Pls send me PDF @skb.sami@gmail.com

    ReplyDelete
  54. pls send me a copy at charan1131@gmail.com

    ReplyDelete
  55. please send me pdf comesboy@gmail.com

    ReplyDelete
  56. Please send me pdf vikram.sappi@gmail.com

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


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

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

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

    Reply

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

    Email address is tanupal17@gmail.com

    ReplyDelete
  62. Hi Vikas,

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

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

    ReplyDelete
  64. please send pdf to amriteshkumar143@gmail.com

    ReplyDelete
  65. Please share to msrikanthece01@gmail.com

    Regards,
    Srikanth

    ReplyDelete
  66. Please send the PDF to ajeshkumar.parna @gmail.com

    ReplyDelete
  67. Please send the PDF to samtulse@gmail.com

    ReplyDelete
  68. 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

    ReplyDelete
  69. 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

    ReplyDelete
  70. Hi Vikas,

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

    Thanks,
    Abhishek

    ReplyDelete
  71. Please send SQL pdf to seema.me17@gmail.com

    ReplyDelete
  72. Its very usefull to me thank you

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

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

    Thanks,
    Sree

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

    ReplyDelete
  75. 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

    ReplyDelete
  76. Please send me PDF
    chethan.msbi@gmail.com

    ReplyDelete
  77. Please send the pdf to rajat.sivan@gmail.com

    ReplyDelete
  78. Hi Vikas,

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

    Many thanks in advance.

    ReplyDelete
  79. Hi Vikas,

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

    Many thanks in advance.

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

    ReplyDelete
  81. 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.

    ReplyDelete
  82. 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.

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

    ReplyDelete
  84. Hi

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

    Thanks in advance,

    ReplyDelete
  85. Please send pdf to anan0401@yahoo.com

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

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

    ReplyDelete
  88. Hi,

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

    ReplyDelete
  89. Hi,

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

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

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

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

    ReplyDelete
  93. Please send me at abhishekdrkrai@gmail.com

    ReplyDelete
  94. Please send me the pdf pravinbhagat.100@gmail.com

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

    ReplyDelete
  96. pgaurg@gmail.com....thanks

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

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

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

    ReplyDelete
  100. please send it manjusri1715@gmail.com

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

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

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

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

    ReplyDelete
  105. please send me pdf to rajeshe77@gmail.com

    ReplyDelete
  106. please send me pdf on er.sami1811@gmail.com

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

    ReplyDelete
  108. Please send me the pdf to alagesh2@gmail.com

    ReplyDelete
  109. dear Sir,

    plz send on gyanjaiswal@gmail.com pdf files

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

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

    Thanks in advance

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

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

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

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

    ReplyDelete
  116. please send me pdf @ gyan_shukla@ymail.com

    ReplyDelete
  117. plsssssssss send me pdf at nitin.shelke07@gmail.com

    ReplyDelete
  118. 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...

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

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

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

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

    ReplyDelete
  123. Good post vikas,

    Can you please send to sppachu@gmail.com

    Thanks in advance.

    ReplyDelete
  124. Please send PDF
    Umeshkumarpal786@gmail

    ReplyDelete
  125. hi, please send pdf to swapnilbagadia@live.com

    ReplyDelete
  126. Pls send me more pdf
    Satyathorat007@gmail.com

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

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

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

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

    ReplyDelete
  131. This comment has been removed by the author.

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

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

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

    ReplyDelete
  135. hi vikas

    Please mail me pdf..

    sowbaranicse@gmail.com..

    Thanks in advance.

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

    ReplyDelete
  137. 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...

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

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

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

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

    ReplyDelete
    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

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

    ReplyDelete
  143. Inderpal Singh3 May 2016 at 14:05

    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.

    ReplyDelete
  144. very helpful

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

    ReplyDelete
  146. Please share pdf to oharinichandra@gmail.com

    ReplyDelete
  147. Anyone please send me the pdf bwalya92@gmail.com

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

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

    ReplyDelete
  150. Hi Vikas,

    Kindly send the PDF. It will help me alot.

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

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

    ReplyDelete
  153. 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

    ReplyDelete
  154. Hi Vikas,

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

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

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

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

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

    ReplyDelete
  159. Please send me all queries to priyac274@gmail.com

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

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

    ReplyDelete
  162. Hi,

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

    Thanks & regards,
    Vivek

    ReplyDelete
  163. Hi ,

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

    Thanks & regards,
    Vivek

    ReplyDelete
  164. Hi Vikas,

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

    Regards,
    Abhishek

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

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

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

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

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

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

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

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

    msbipavan215@gmail.com

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

    ReplyDelete

Archive

Contact Form

Send