SQL Query based Multiple Choice Question with Answer | SQL Quiz Part SQL Quiz based on JOIN concepts
Follow me on Social Networking Sites :
------------------------------------------------------------------------------------
*Twitter:
/ sunilkr5672
*Instagram :
/ itjunction4all
-------------------------------------------------------------------------------------
Table and Insert Scripts for Practice
------------------------------------------------------------------
Create Table X(
Col varchar(5)
)
Create Table Y(
Col varchar(5)
)
Create Table Z(
Col varchar(5)
)
Insert into X Values(null)
Insert into X Values(null)
Insert into X Values('A')
Insert into X Values('A')
Insert into X Values('B')
Insert into X Values('B')
Insert into Y Values('A')
Insert into Y Values('B')
Insert into Y Values('A')
Insert into Y Values('A')
Insert into Y Values('C')
Insert into Y Values(null)
Insert into Z Values('B')
Insert into Z Values('B')
Insert into Z Values('B')
Insert into Z Values('B')
Insert into Z Values(null)
Insert into Z Values(null)
#sql #sqlinterviewquestions #sqlqueries #itjunction4all