Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
MySQL: Linking Databases
Old 11-07-2005, 09:23 AM MySQL: Linking Databases
Skilled Talker

Posts: 58
Trades: 0
Hi,

Scenario:

Table 1 contains:

event_id
event_name
event_type

Table 2 contains:

event_meals
event_drinks
event_accesories

Table 3 contains:

event_tables
event_flowers
event_chairs

How do I go about making sure that these three tables are linked with each other so when I do a search for a specific date's event it will show me all the information out of both tables for that spesific event?

Could someone please explain to me how to link multiple tables with each other?

Thank You
Llama is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-07-2005, 09:56 AM
ibbo's Avatar
Super Spam Talker

Posts: 880
Location: Leeds UK
Trades: 0
put event id into each of the tables keeping the id the same for each entry that matches.

then you can grab it all easily like

select * from table1 t1 left join table2 t2 on t1.id=t2.id left join table3 t3 on t2.id=t3.id.

or

select * from table1 t1, table2 t2, table3 t3
where t1.id=t2.id
and t2.id=t3.id

Ibbo
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Linux user #349545 :
(GNU/Linux)iD8DBQBAzWjX+MZAIjBWXGURAmflAKCntuBbuKCWenpm XoA7LNydllVQOwCf
ibbo is offline
Reply With Quote
View Public Profile Visit ibbo's homepage!
 
Reply     « Reply to MySQL: Linking Databases
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09604 seconds with 12 queries