I have three tables only one column is common (id)
How join these tables? Table is containing record of student, he may have more than one postgraduate qualification, and he may have more than one professional experience.
I am using SQ L server 2008
Table Student
id
- name
- phone
Table Postgraduate
- id
- qualification
- subject
Table Experience
- id
- designation
- from date
- to date
I want data in this manner
Id name qualification Designation from date to date
1 ABC PGDCA lecturer 20/14/2011 20/14/2012
1 null MA teacher 20/12/2012 20/12 2011
1 null null asst teacher 20/12/2012 20/12 2011
2 XYZ MA TEACHER
2 NULL BA ASSISTANT
i Want In this way I tried join but it is providing duplicate data