Jump to content

joining 3 tables mysql


ardhix
Go to solution Solved by lilmer,

Recommended Posts

please help

 

i have assignment to selecting tables by joining them..

 

how do i use join, or inner join?

 

is there another option selecting 3 tables by using foreign key?

 

Here's the table

 

 

this one is user table

 

tabletuses.jpg

 

here is article category

 

tabletcategoryarticle.jpg

 

and this is content of article

 

tartikel.jpg

 

 

 

i was willing to choosing 

 

 

article_news table = 
 
article_id, category_article_id, user_type_id, user_id, judul(title), artikel, photo, tag, tanggal
 
 
tcategory_article = 
 
category_article_id, category_article
 
 
tuser = 
 
user_type_id, firstname, lastname
 
 
 
thank you
Link to comment
Share on other sites

  • Solution

SELECT * FROM user_table as u JOIN content_article as a ON u.user_id = a.user_id JOIN article_category as c ON a.category_article_id=c.category_article_id WHERE . . . .
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.