Jump to content

Query Help...Please


Recommended Posts

Hi..

 

I am having difficulty in joining my tables together to get the relevant information. Basically I have 5 tables:

 

Skill_Tbl:

--------

Skill_ID(Int 11)

Skill_Name

 

Person_tbl:

-----------

Person_ID(Int 11)

Person_Name

 

Learnin_Style:

------------

Learning_ID (INT 11)

Learning_Name (VARCHAR)

 

Person_Learning:

--------------

ID (INT 11-AI)

Person_ID

Learning_ID

 

Skill_Learning:

------------

ID (INT 11-AI)

Skill_ID

Learning_ID

 

And basically I want to show the following information via some sort of a query:

 

I want to display all the names of the people and skill and style name where Learning ID is the same.

 

 

Is this possible?

 

Thanks

Link to comment
Share on other sites

  • 2 weeks later...

Something like this?

 

SELECT a.*,b.*,c.*,d.*,e.* FROM Person_tbl AS a
LEFT OUTER JOIN Person_Learning AS b ON a.Person_ID = b.ID
LEFT OUTER JOIN Learnin_style AS c ON b.Learning_ID = c.Learning_ID
LEFT OUTER JOIN Skill_Learning AS d ON d.Learning_ID = b.Learning_ID
LEFT OUTER JOIN Skill_Tbl AS e ON e.Skill_ID = d.Skill_ID

 

You can use INNER JOIN if you know there will definitely a matching ID in every table and no NULLs

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.