Click here to Skip to main content
15,892,537 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
hi i am new to sql sever 2008 pls see this below link in this below link only two table are join i want t

to join one more table that is StduentRegistartion from that StdRclass Cloumn i want to display.
see
the below link it clearly conversation has done plz help me urgent any one thanks advance

how to slove data duplication when using inner join?[^]
Posted
Updated 11-Mar-13 0:49am
v3

1 solution

S
SQL
SELECT SR.stdRClass , SD.stdDname , SD.stdDMarks , SA.dist, SA.Aera
FROM studentregistration SR
INNER JOIN studentDetails SD ON SR.stdRid = SD.stdDid
INNER JOIN studentAdress SA ON  SD.stdDid = SA.stdAid
where SR.stdRid='1' and SD.stdRid='1' and SR.stdRid='1'
group by SR.stdRClass ,SD.stdDname ,SD.stdDMarks ,SA.dist, SA.Aera;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900